- F8 to show the menu.
- Shift-Ctrl-Alt-Del to send Ctrl-Alt-Del signal to remote Windows desktop.
Nuts and bolts about programming applications, databases and spreadsheets. Note: Comments are moderated to filter comment spam. Mobile version
2005-09-07
Software: VNC Viewer Handy Shortcuts
2005-09-02
JScript To Launch Applications
Here's a quickie JScript program to launch a set of applications in Windows. I wrote it because I didn't want to always start these applications when I logged in to my workstation (which is what happens to programs in the Windows Startup folder). Save the text in a *.js file in your desktop, edit the list of applications, then click on the icon to run it.
var apps = new Array()
apps[0] = '"C:\\Program Files\\Bozinis\\2xExplorer\\2xExplorer.exe"'
apps[1] = '"C:\\Program Files\\Mozilla Firefox\\firefox.exe"'
apps[2] = '"C:\\Program Files\\Microsoft Office\\Office\\EXCEL.EXE"'
apps[3] = '"C:\\Program Files\\Microsoft Office\\Office\\OUTLOOK.EXE"'
function runApps() {
var wshell = WScript.CreateObject("WScript.shell")
for (var i = 0; i < apps.length; ++i) {
var appPath = apps[i]
wshell.Run(appPath, 1, false) // Don't wait for command to finish
}
wshell = null
}
runApps()
JScript and Windows notes
If your application file paths have white spaces, you need to delimit them by double quotes so that the Windows shell can find them. The outer-most single quotes tell JScript the start and end of a string. Backslashes in Windows paths need to be escaped by another backslash.
Software: Skype quirks and gotchas
- There is no way to view the history of a group chat in Skype (my version 1.1.0.79). The chat history files are stored in C:\Documents and Settings\username\Application Data\Skype\username but they are encoded in some proprietary format.
- If you call someone and then close the call window before they answer, the call attempt continues. If the recepient answers the call, the caller does not see a call window but the line is established, so the receipient can eavesdrop.