FAQ : IDEAL Dispatch

Remote Deployment and Uninstallation of Windows Software

Search Help  

FAQ: Help

By using this search engine, you can search one or more terms in the complete Pointdev FAQ.

  • In order to look for one or more keywords, type them in the search field using space to separate them.

    ex : remote control

    This search will show you every FAQ containing the word "remote" OR "control".

  • In order to look for a full sentence, use the quotes " " around your keywords
  • ex : "remote control"

    This search will show you every FAQ containing the whole word "remote control".


 Title and Content
 Title only

  • 30% DISCOUNT ON NEW LICENSES

    To celebrate IDEAL ADMINISTRATION's 24rd anniversary, we are offering a 30% discount until August 31, 2024 on all new licenses purchased by credit card from our website.

    One (1) IDEAL ADMINISTRATION license at the price of 230.30 Euros instead of 329.00 Euros.

    This 30% discount applies to all our software without limit to the number of licenses purchased.

    To order with a 30% discount, enter the promotional code PROMO30 when ordering online.


Some examples of deployments by using IDEAL Dispatch

VBScript Action - How to deploy the creation of a shortcut on the desktop of computers of your network?

VBScript Action - How to deploy the creation of a shortcut on the desktop of computers of your network?

Pre-requisite:

Scripts:

  • Creation of a shortcut relative to IDEAL Administration Software

set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("AllUsersDesktop" )
set oShellLink = WshShell.CreateShortcut(strDesktop & "\MY IA.lnk" )
oShellLink.WindowStyle = 1
oShellLink.TargetPath = "C:\Program Files\Pointdev\IDEAL Administration\IA.exe"
oShellLink.WorkingDirectory = "C:\Program Files\Pointdev\IDEAL Administration"
oShellLink.Save

  • Creation of a shortcut of a ".txt" file that will open with notepad

set WshShell = WScript.CreateObject("WScript.Shell" )
strDesktop = WshShell.SpecialFolders("Desktop" )
set oShellLink = WshShell.CreateShortcut(strDesktop & "\Shortcut Script.lnk" )
oShellLink.TargetPath = "notepad.exe"
oShellLink.WindowStyle = 1
oShellLink.Hotkey = "Ctrl+Alt+f"
oShellLink.IconLocation = "notepad.exe, 0"
oShellLink.Description = "Shortcut Script"
oShellLink.WorkingDirectory = strDesktop
oShellLink.Arguments = "C:\myFile.txt"
oShellLink.Save

You must configure the following arguments:

  • Enter the path of the executable file: c:\CreatRacc.vbs
  • Select wscript as executable VBScript.
  • With the help of VBScript Arguments Management, select //B //Nologo for a silent execution

 

Last modification: 05/23/2013

Previous
   
Next

Back to the list

 



FAQ : IDEAL Administration | IDEAL Dispatch | IDEAL Remote | IDEAL Migration



IDEAL Dispatch 9.9
DOWNLOAD
FREE VERSION
Back to top