Jump to content

The Vollatran Project - Application Installer tool


Bert
 Share

Recommended Posts

Hi,
 
Great work bytw.
 
I'm trying to add WIN_81 support but no go.
 
I have added

 Case $Ver = "WIN_81"
    If @OSArch = "X64" then
    $Ver = "WIN_81_64"
    $OS = "Windows 81 - 64Bit  "
 
to install.au3.
 
Created ini file "win_81_64.ini" and put it inside config folder with others. But i always get msg that my os not supported.
 
My @OSVersion "WIN_81" @OSArch "X64"
 
im i missing something? help pls :)
 
Thanx in advance
cromadness
Edited by jfranjic
Link to comment
Share on other sites

Update: sorry my bad its working great.

 

Next: Is it possible when i run this application in domain pc under non admin account, that ask me to enter credentials of different user? In my case domain admin credentials? Before installation?

tx

best regards

Link to comment
Share on other sites

  • 4 months later...

I been using this tool for a few years in a school. I know it as Ktool.

If anyone is interested. Add the following after the line that says "Select" (line 83) to add Windows 10 support

Then create Win_10_32.ini & Win_10_64.ini in your config folder :-)

Case $Ver = "WIN_10"
   If @OSArch = "X86" then
    $Ver = "WIN_10_32"
    $OS = "Windows 10 - 32Bit  "
   EndIf
   If @OSArch = "X64" then
    $Ver = "WIN_10_64"
    $OS = "Windows 10 - 64Bit  "
   EndIf

 

Link to comment
Share on other sites

  • 7 months later...
  • 1 month later...

Changed manifest "requestedExecution Level" as below. Was having an issue with Windows 8.1 where the requested level would not always get passed correctly, and certain applications would not install.

 

<requestedExecutionLevel level="requireAdministrator" uiAccess="false"></requestedExecutionLevel>
 

Link to comment
Share on other sites

  • 1 year later...
  • 1 year later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...