Everything posted by mow
-
WIHU not running...
Hello, I also use a combination of WIHU with Autoit3 this is what I do to patch the MS windows activation: First I put a copy of Autoit3.exe at %system32% so I can run the AU3 scripts from anywhere. ----------------------------------------------- This is the portion of my WIHU ini file: (%CURDIR% is not must) It has nothing special – just to call the script. You can verify if it working by putting a MsgBox command in your autoit script description.5= Activate Windows workdir.5 = %CURDIR%\XpUpdate\WindowsActivation command.5= autoit3 setup.au3 selected.5 = 0 ----------------------------------------------- This is my Autoit script. Within the same directory there is also the file 'WinXPSP2Activator.exe' AutoItSetOption ("WinTitleMatchMode", 2) Run ( "WinXPSP2Activator.exe",@ScriptDir) Sleep (3000) ; this will wait for the patch GUI window and send ENTER WinWaitActive (":?:","",7) Send ("{ENTER}") ; this will wait for the 'Windows Activation Completed' window and send ENTER sleep (6000) WinWaitActive ("Windows","",14) Send ("{ENTER}") sleep (2000)
-
Running wihu After Installation.
using %WIHU% sounds good if some installations will not work try using "workdir.x" as well.
-
Running wihu After Installation.
You should include a command line options like: WIHU.exe /skipsettings /INI="install.ini" or [GUIRunOnce] %Systemdrive%\install\wihu.exe /INI="install.ini" Another Point, Are the applications in the same folder of WIHU? set the right variable at the ini file
-
Q: Enable User Account
Hello Benjamin, I Wish to enable the Guest account (and show it on thw welcome screen) I figured out I can use the Status.x Command in order to enable the account, but what is the status for Enabled? Where can I find a list of avaliable status? Thanks, Moshe
-
Q: Auto restart after Finish installing?
I don't follow you - please explain
-
Q: Auto restart after Finish installing?
What I wish to do is: start the installation manually (with no timeout), and when all is finished, automatically exit / restart after timeout. I tried playing with "/autoexit" switch but it will abort only on startup of wihu. Is that possible?
-
Possible Bug: creating non-administrators users
(1) About creating non-administrators users: If I look at computer management for the user I created right after the creation (before restart or logon), it's in the Administrators group. After first logon, I checked and it's in the Users group. So I guess it is ok... But I found something else: if your system (mine XP.pro.sp2) is already configured for automatic logon, if you create a new user, and do not mark the checkbox 'Logon user automatically', your current automatic logon is disabled. Perhaps it is better to leave it unchanged?
-
Possible Bug: creating non-administrators users
1. While creating new users with the GUI interface of WIHU (no INI files at all), I have noticed that the created user is always member of 'Administrators'. That is even if the checkbox of 'Add administrator rights to the new user' isn't marked. 2. When creating new user via Windows Control Panel and choosing "administrator", the new user is member of Administrator and Users. When created with WIHU, the user is member of Administrators only. Is that intended to be that way? Working on WIHU Version: 2.1.19.6
-
Que: redirect user profile path?
What about changing the default location for the entire profile. is that possible? I want to set one variable, and all the user shell folders would be under that path
-
Que: redirect user profile path?
How can I redirect the entire user profile when creating a new user with WIHU? For now I redirect only specific shell folders. This is how I do it: [environment] Personal = D:\Users\%ThisUser%\My Documents My Music = D:\Users\%ThisUser%\My Documents\My Music My Pictures = D:\Users\%ThisUser%\My Documents\My Pictures My Video = D:\Users\%ThisUser%\My Documents\My Video is it not recommended to move the entire profile? I want to do so I can restore a windows partition image without overwriting the users documents & setting.
-
Running simple:combining WIHU and AUTOIT3 scripts
I've been using WIHU for some months, and I would like to share with you a way of combining WIHU with AUTOIT3 scripts, a way which I found to be very useful for deployment applications. One problem for me is that the INI file of WIHU would become quite large and complicated, and so harder to navigate and maintain. I am using AUTOIT3 as my main scripting language. What I basically did was create a script file to handle each application. The script can handle all the dependencies and decisions, then install the application and when it finish, pass the control back to WIHU. That makes my INI file looks like that: ; ------------------------------------------------------------------------------------------ [basic] Collapsed = 1 description.0 = WinRar 3.4 workdir.0= %CURDIR%\basic\winrar command.0= autoit3 Setup.au3 selected.0 = 1 description.1 = Acrobat 5 workdir.1= %CURDIR%\basic\Acrobat5 command.1= autoit3 Setup.au3 selected.1 = 0 description.2 = Acroabt 7 workdir.2= %CURDIR%\basic\Acrobat7 command.2= autoit3 Setup.au3 selected.2 = 1 ; ------------------------------------------------------------------------------------------- Benefits of working that way: @ Keep the INI file simple and small as possible. @Installation of single application is straight and simple – all you have to do is running the script. @Updating the application source setup to a newer version is with fewer hassles – again, you update one simple script, not the INI. @Able to maintain 'sets' of applications (more that one INI file) – now it is easier because the INI need to be updated only for adding / remove applications. If someone would like an example for a AU3 script I will post it -- to Benjamin Kalytta: thank you for this nice peace of software!