Xp Home Permissions

WareDat

Member
Reaction score
0
Location
Boardman, Oh
Changing permissions in XP Home can be a hassle because you have to do it in "safe mode", so i made a little script to enable the security tab while in the normal mode.

Code:
; Xp Home Permission Tab - Clear Choice Computer

$value = MsgBox ( 4, "Clear Choice Computer LLC", "Turn on XP Home Permission Tab" )
If $value = "6" Then
	 RegWrite ( "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Option","OptionValue", "REG_DWORD", 00000001 )
	 MsgBox ( 0, "Clear Choice Computer", "Remember to turn off before reboot or XP Visual Styles will quit working" )
 ElseIf $value = "7" Then
	 RegDelete ( "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Option","OptionValue" )
	 EndIf

Just compile with autoit and click yes to add the security tab and no to remove it (immediately takes effect). If you leave it enabled when you reboot visual styles will be disabled. Simply run again click no, reboot and everything will be back to normal.

Enjoy
 
Last edited:
Back
Top