MSFN Forum: Windows Installer Helper Utility - MSFN Forum

Jump to content


  • 27 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • This topic is locked

Windows Installer Helper Utility Rate Topic: -----

#21 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 26 June 2004 - 11:05 AM

If the first screen would look kind of like in the picture below , with just the install button if using the /autoinstall switch that would be great, sorry if I'm asking to much, just positive comment

Attached File(s)




#22 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 26 June 2004 - 01:04 PM

So, everything that was requested here was added.
@MarcoTips: I also added a "Select all" button (tri state) as you wished, and of course screen center positioning :)
It now run on Windows 2000. I added /SkipAutoRestart switch to prevent from automatically booting.
Example commandline could be: wihu /skipautorestart /autoinstall 0

which will automatically install software but don't reboot after programm termination.
I'll do an unattended windows installation test with this tool now.

Benjamin Kalytta

#23 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 26 June 2004 - 01:53 PM

thanks, will test it out tomorrow if it's available for download then

If I have any more request I'll let you know, would do it myself but don't kwow how to program in C++

#24 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 26 June 2004 - 02:08 PM

hmmm....
I've found a place in my install routine for almost every other progam made at MSFN.....

I guess I could find a place for this :)

Very Very nice indeed.

#25 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 27 June 2004 - 05:07 AM

Software was installed in reverse order as specified in ini file is fixed now. Also a bug in AutoInstall option.
So everyone can make suggestion which feature should be added in future version 1.6.

Benjamin Kalytta

#26 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 27 June 2004 - 08:51 AM

Is it possible now to skip the user creation completely and select what you wish to install, and if nothing is selected during a specified time it auto installs the standard selected options

#27 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 27 June 2004 - 10:41 AM

Ok MarcoTips, take this one: WIHU 1.6. You have to enable /SkipSettings switch.
@Alanoll: Thank you again for correcting grammatical mistakes in my application.

Benjamin Kalytta

#28 User is offline   syntax_13 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 31-August 03

Posted 27 June 2004 - 11:48 AM

Very nice, but.... your program seems to have a limit somewhere.
I don't see anything wrong, but for some reason it stops listing programs at "msn messenger". The checkbox parameter is also ignored.
See the attached ini file.

Attached File(s)



#29 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 27 June 2004 - 04:04 PM

You're right syntax_13, it was a very bad mistake of mine. Please use the new one WIHU 1.6.
Btw syntax_13, nice ini file. May I borrow it for my installation system?
For everyone programmer here: Don't use GetPrivateProfileSectionNames with fixed Buffer size :)

Benjamin Kalytta

#30 User is offline   my2001 

  • Member
  • PipPip
  • Group: Members
  • Posts: 260
  • Joined: 31-May 04

  Posted 27 June 2004 - 04:34 PM

Hallo Benjamin! :)

Great work, indeed! Thanks a lot for that nice little progi. :rolleyes:

#31 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 27 June 2004 - 05:07 PM

when using the skipsettings switch the install.ini isn't loaded

#32 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 27 June 2004 - 05:27 PM

It's loaded here. Be sure install.ini is in same folder as wihu.exe.

Benjamin Kalytta

#33 User is offline   syntax_13 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 31-August 03

Posted 27 June 2004 - 11:32 PM

No problem benjamin.

Actually, there are some other things i'd like to be added:

1. a commandline parameter to skip the software install part. That way i could run your program twice. Once through cmdlines.txt to create an admin account and setup the computer settings. The second time after first logon with the new account to just run and install the software part, here it would skip the account screen.

2. an option to rename the default Administrator account instead of creating a new admin

3. a possibility to use the name and password of the newly created account as variables in the install.ini file (e.g. %newuser%, %newpassword%).
This is used in the cmdlines.txt part to run a batch file which injects the autologon parameters into the registry and thus lets you autologon using your newly created account.

#34 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 28 June 2004 - 12:16 AM

@syntax_13:

You could use wihu /autoinstall 0 /username "New User" /userpassword 1234567890
In this case, settings will not be skiped.

Setting %NewUserPassword% is a security risc, don't know if it is so suitable.
Changing Administrator isn't that easy. What about just disabling it?
Nevertheless I added this feature at this moment. May be there will be a command line switch in future to disable it. %NewUserPassword% and %NewUserName% is now available.

Benjamin Kalytta

#35 User is offline   syntax_13 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 31-August 03

Posted 28 June 2004 - 04:44 AM

Benjamin, maybe you could add a 'rename account' checkbox which calls this renuser program ?

#36 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 28 June 2004 - 06:32 AM

Who programmed this tool? I'd prever to get the source and to include it directly in my code.

Benjamin Kalytta

#37 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 28 June 2004 - 07:36 AM

when I use the switch /skipsettings, I get the screen below, but when I don't use the switch it shows up normal

EDIT: just did another test, when I call wihu.exe from the commandline without the switch its also like in the screenshot

Attached File(s)



#38 User is offline   BenjaminKalytta 

  • Developer
  • PipPipPipPip
  • Group: Members
  • Posts: 609
  • Joined: 08-June 04

Posted 28 June 2004 - 07:39 AM

@MarcoTips: Do you use the newest version. Please try to download it again (WIHU 1.6.1).
Or may be your Ini file isn't correct?

Benjamin Kalytta

#39 User is offline   MarcoTips 

  • Junior
  • Pip
  • Group: Members
  • Posts: 69
  • Joined: 28-January 04

Posted 28 June 2004 - 07:44 AM

I'm using 1.6 just downloaded it again and I'm using the ini file that is provided, if I don't run it from the command line then it shows up properly

#40 User is offline   syntax_13 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 31-August 03

Posted 28 June 2004 - 07:49 AM

There seem to be two versions of renuser, one here and one here.

Share this topic:


  • 27 Pages +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • This topic is locked

3 User(s) are reading this topic
0 members, 3 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy