Jump to content

arran

Members
  • Posts

    5
  • Joined

  • Last visited

Reputation

0 Neutral

About arran

Personal Information

  • Location
    United Kingdom
  1. Take it you haven't heard of Mono. It supports Linux, Mac OS X, Sun Solaris, BSD and Microsoft Windows.
  2. arran

    Printer Scripts

    Dim objNetwork, strPrinter strPrinter = "\\servername\printername" Set objNetwork = CreateObject("WScript.Network") 'Adding a printer objNetwork.AddWindowsPrinterConnection strPrinter 'Setting a default printer objNetwork.SetDefaultPrinter strPrinter 'Removing a printer objNetwork.RemovePrinterConnection strPrinter Adding - http://msdn2.microsoft.com/en-us/library/zsdh7hkb(VS.85).aspx Removing - http://msdn2.microsoft.com/en-us/library/tsbh2yy7(VS.85).aspx Setting a default - http://msdn2.microsoft.com/en-us/library/2ccwwdct(VS.85).aspx
  3. How did he get the reverse proxy set up?
  4. //JScript var fso; fso = new ActiveXObject("Scripting.FileSystemObject"); fso.DeleteFolder("C:\\foldername"); 'VBScript Dim fso Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFolder("C:\\foldername") Code from JScript5.chm and Vbscrip5.chm Edit: Sorry guys, vbscript uses one slash and JScript uses two slashes. JScript uses two slashes as the first slash is used to denote an escaped character such as \n \r \t etc where as vbscript use vbCr vbLf vbTab and so on.
  5. If you've got the Windows driver for it you could try NDISwrapper to get it running.
×
×
  • Create New...