sayru Posted September 2, 2010 Share Posted September 2, 2010 is there anyways to call regedit and .reg files by packaging the .reg files inside the autoit exe ? Link to comment Share on other sites More sharing options...
omikron48 Posted September 2, 2010 Share Posted September 2, 2010 Look at FileInstall.Have you tried looking at the help file? It's there, you know?You can also use the Reg* function available to AutoIt and do the registry changes inside your code.Did you even read the reply I made on your other topic? Link to comment Share on other sites More sharing options...
wakillon Posted September 2, 2010 Share Posted September 2, 2010 is there anyways to call regedit and .reg files by packaging the .reg files inside the autoit exe ? Try this $_RegFilePath = @TempDir & '\myregfile.reg' FileInstall ( 'myregfile.reg', $_RegFilePath, 1 ) Run ( @WindowsDir & '\regedit.exe /s "' & $_RegFilePath & '"' ) AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Link to comment Share on other sites More sharing options...
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