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

  • IDEAL ADMINISTRATION 26 coming soon...

    With IDEAL ADMINISTRATION 26, Active Directory administration takes a new step forward. This version emphasizes proactive detection, intelligent alert analysis using Cloud AI, and decision support, while maintaining simplicity, efficiency, and agentless administration.


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