diamond 0 Posted March 3, 2005 I am a newbee, so this program is not the most advanced. I was working on the network one day, and discovered that I needed to grant permissions in the registry for certain users so that they could run certain applications (office) locally on laptop computers with local group policies. I also needed to change the time server remotely. Thanx to Autoit, and certain ideas I got from here I got it working. Here goes part of the program that I used. Hope this helps someone. Platform = XP, Subinacl is available on the internet. $sPath = $Remotecomputer $sStringPath = 'subinacl /subkeyreg \\' & $sPath & '\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office /grant="Domain\domain users"=F ' runwait($sStringPath) $sStrPath = 'subinacl /subkeyreg "\\' & $sPath & '\HKEY_LOCAL_MACHINE\Software\Microsoft\Shared Tools\Proofing Tools" ' & '/grant="domain\domain users"=F ' runwait($sStrPath) $RegPath1 ="\\" & $sPath & "\HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\DATETIME\SERVERS\" RegWrite($RegPath1, "", "REG_SZ", "0") RegWrite($RegPath1, "0", "REG_SZ", "Timeserver") Share this post Link to post Share on other sites