Citrix Install Script

rhunt01

Well Known Member
I am trying to develope a bat file that I scan schedule to run through Microsoft Scheduler on a Citrix Server.

Does anyone know exactly what commands puts a citrix server in install mode and also back into Multi-user mode (if that is the correct name for it)?

I want to essentially make a bat file that:

-puts citrix server in install mode
-runs "\\DEPLOYMENT SERVER\B7333\ONEWORLD CLIENT INSTALL\SETUP.EXE" -V -D D:\B7 -P [PACKAGENAME]
-puts citrix server back in multi-user mode.

Thanks in advance.
 
change user /install (install mode)
change user /execute (multi-user mode)

hth
Jeff
 
change user /install (Install Mode)
change user /execute (Multi User Mode)
 
Here's one.
 

Attachments

  • 33798-TermServer.cmd
    419 bytes · Views: 79
David,

-v stands for verbose. You can also use a -s here. -s stands for silent.
-d stands for "drive" and needs to be followed by a space and a drive letter.
-p stands for package and needs to be followed by a space and a package name.
there is also, -r, for remove if it is a fool package.

This is how I install all packages to my FAT clients (non development machines) so they install at night.

Check out the Knowledge Garden, look for a document titled something like, "FAT client install from Command line".

Good Luck.
 
Back
Top