Jump to content

Venom007

Members
  • Posts

    11
  • Joined

  • Last visited

Venom007's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks, I like the function. I will update the original post. Input always welcome.
  2. Forgot to mention. I still need to add support for Vista. Currently only works with Windows XP. Most of the Repair Methods are not supported by Vista.
  3. This program is not complete. Will complete it soon. Repair Utilities is basically a clone of Dial A Fix. I wanted to see if the same can be done using AutoIt. AutoIt can't only do it, but it's faster. Any Ideas, requests and suggestions are welcome. RepairUtilities.zip
  4. Here's a simple GUI for the System File Checker on Windows XP. You need to compile the SetupSources Script first. SystemFileChecker.zip
  5. Just simply create a system restore point: _CreateRestorePoint('Test Restore') If Not @error Then MsgBox(0x40, "System Restore!", "System Restore Point created successfully.", 20) Func _CreateRestorePoint($sRestorePointName) Local $objSystemRestore $objSystemRestore = ObjGet("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore") If Not $objSystemRestore.createrestorepoint($sRestorePointName, 0, 100) = 0 Then SetError(1) EndFunc ;==>_CreateRestorePoint Credit goes to bchris01 for the updated code.
  6. This little script will allow you to edit your Windows XP Setup sources. Not completed fully. This will allow you to correct da error of System File Scanner not finding your setup sources when you do a scan. Suggestions, requests Welcome. SetupSources.zip
  7. Thank you for this one! Looks good and sooooooooo fast!
  8. Don't you think it will help to try and convert the VBS script to AutoIt Script. Just asking. I don't use vb scripts anymore. I converted all my scripts to AutoIt.
  9. What do I need to do to be able to post on the Example Scripts Forum?
×
×
  • Create New...