Archive for ខែ កក្កដា 8th, 2008
Create a System Restore Point Shortcut Icon
If you want to manually create the script, create a new file named something.vbs and paste in the following. Otherwise the downloadable scripts are provided at the bottom of the article.
If WScript.Arguments.Count = 0 Then
Set objShell = CreateObject(”Shell.Application”)
objShell.ShellExecute “wscript.exe”, WScript.ScriptFullName & ” Run”, , “runas”, 1
Else
GetObject(”winmgmts:\\.\root\default:Systemrestore”).CreateRestorePoint “description”, 0, 100
End If
You’ll notice that there’s a shellexecute [...]
Enable or Disable UAC From the Windows Vista Command Line
If you’ve used Windows Vista for more than 3.7 minutes, you know what UAC (User Account Control) is.. it’s the obnoxious, nagging popup window that will be your life for the next 3-5 years unless you switch back to XP in frustration, or to a better OS like… OS X, Suse, Ubuntu, or even XP.
Note: [...]
How to Disable SuperFetch on Windows Vista
The SuperFetch service in Windows Vista preloads your system’s memory with the applications that you use most often. This makes launching of those applications much faster, but it might be an unwanted behavior for system tweakers or gamers.
There’s no hard evidence that enabling or disabling this service will increase performance in general, but if you [...]