Sanix Posted September 26, 2007 Posted September 26, 2007 I'm a new user of AutoIt. First of all, is there any ebook or something where I can learn the scripting sequentially? My question is how can I disable system restore uring autoit?
Moderators SmOke_N Posted September 26, 2007 Moderators Posted September 26, 2007 (edited) I'm a new user of AutoIt. First of all, is there any ebook or something where I can learn the scripting sequentially?http://www.autoitscript.com/forum/index.php?showtopic=21048http://www.autoitscript.com/forum/index.ph...mp;highlite=%2BMy question is how can I disable system restore uring autoit?Why?Edit:Had quotes backwards Edited September 26, 2007 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
TK_Incorperate Posted September 27, 2007 Posted September 27, 2007 lol Because he wants to make a so called "Hack" in auto it, no there is not, as system restore is done before you load ANY programs or anything, even startup programs. This is not possible in AutoIT ~TK
Moderators SmOke_N Posted September 27, 2007 Moderators Posted September 27, 2007 lol Because he wants to make a so called "Hack" in auto it, no there is not, as system restore is done before you load ANY programs or anything, even startup programs. This is not possible in AutoIT~TKGoing to sound like I'm busting your chops here, but I'm not. It's one thing to discourage someone from doing something, especially if they signed up and their very first post is something questionable (such as this), but another to give false information all together. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
TK_Incorperate Posted September 27, 2007 Posted September 27, 2007 I understand that, but he has been viewing this topic since you asked him why, without reply, and even after what I've said he has not came up with a reason. I'm not meaning to discourage or give false info, but what reasons could ANYBODY want to disable system restore, besides for malicious use? ~TK
Sanix Posted September 27, 2007 Author Posted September 27, 2007 lol Because he wants to make a so called "Hack" in auto it, no there is not, as system restore is done before you load ANY programs or anything, even startup programs. This is not possible in AutoIT~TKYes TK is right, I do want to create a hack in autoit .. but not just for the sake of disabling system restore. But I'm working on a virus removal tool that needs system restore disabled first. So I want to disable system restore from autoit automatically without user intervention.
JBeef Posted September 27, 2007 Posted September 27, 2007 first thing with me. load OS, disable sysrestore. ~Jap
weaponx Posted September 27, 2007 Posted September 27, 2007 (edited) I have System Restore disabled by default in my NLite build. You are wrong to think that disabling it is a security risk. The system restore file that is generated can be cracked easily and you know what else? System Restore doesn't do shit! End users run it every time they get a popup, next thing you hear "I can't find my family photo album and internet explorer doesn't work" Oh, did you do a system restore? Sorry end user. Trying to remove spyware? Oh crap its still in the system restore file after i've deleted it. Dang, wish I had disabled that. Edited September 27, 2007 by weaponx
ptrex Posted September 28, 2007 Posted September 28, 2007 @all This is what will Enable / Disable the System Restore. ; Disable System Restore ; ------ SCRIPT CONFIGURATION ------ $strComputer = "<ComputerName>" ; ------ END CONFIGURATION --------- $objWmi = ObjGet("winmgmts://" & $strComputer & "/root/default:SystemRestore") $objWmi.Disable("") ConsoleWrite ("System Restore disabled") Regards ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now