MS DOS half screen / windows
- No Comments
- Oct, 05, 2009
- Angelo Schalley
- Windows-Microsoft
The half-screen display is clearly a Windows 2000/XP problem.
I’ve found the following instructions:
“Switch to Windowed mode by pressing <Alt><Enter> Right-click on the title bar of the window Select “Properties” from the menu On the “Layout” tab, set the Buffer and Screen Height settings to 25 Press “OK”
Read more on MS DOS half screen / windows…
run as administrator script / normal user
- No Comments
- Oct, 05, 2009
- Angelo Schalley
- Windows-Microsoft
‘This script allows limited accounts to use PrintArtist (PA)
‘as the Administrator. It must be placed in the same
‘folder with the executable program file for PA. A shortcut
‘to this script file can then be put on the student Desktop.
‘Your antivirus program may need to be set to allow scripts.
‘Written by Vic Laurie, May, 2004
‘Not responsible for any problems arising from use of the script
‘——————————————————-
Option explicit
dim oShell
set oShell= Wscript.CreateObject(“WScript.Shell”)
oShell.Run “runas /user:administrator “”PrintArt.exe”””
WScript.Sleep 100
‘Replace the string yourpassword~ below with
‘the password used on your system. Include tilde
oShell.Sendkeys “yourpassword~”
Wscript.Quit
Read more on run as administrator script / normal user…
automatic logon windows
- No Comments
- Oct, 05, 2009
- Angelo Schalley
- Windows-Microsoft
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
“DefaultUserName”=”UserName”
“DefaultPassword”=”Password”
“AutoAdminLogon”=”1”