Musings    BIOS Tag    Computer info by Serial #     MAC Addr Lookup     EKU Today iCal     EKU Students iCal
IP Address = 18.218.129.100

Cartoon photo of Philip Philip’s Useful Links

Browser info: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)



PRINT JOB FIXRegular Expression Tester HTML ValidatorWeb Accessibility Evaluation ToolEKU Speed Test


Keyboard Test UtilDate/Time CalculatorNetwork Speed TestPC BenchmarksEKU Card Services balanceCafeteria Lunch MenuEastern Progress (digital)Payroll Calendars

Test Pages for Web Browser Plugins Adobe Flash Player   Adobe Shockwave Player   Java

 

Various links

Fix facultystaff Drive Mappings (L: N: P: Q: U: W:)

EKU Update “Years of Service” editions: 2016 •  2015 •  2014 •  2013 •  2012 •  2011 •  2010 •  2009 •  2008 •  2007 •  2006 •  2005 •  2004

 

Manufacturers' Support Sites

Acer Apple Apple Warranty Asus Brother Canon Dell eMachines Fujitsu Gateway HP/Compaq HP Warranty IBM/Lenovo Kyocera Lexmark Sharp Sony Toshiba Toshiba-Copiers

 

Utilities

COD VNC Beta 2 Mac OS X VNC NewMac VNC!
Vista/XP/7 Profile Fix

EKU's HP Computers (old)

original HP Docking Station (EN488AA#ABA) - Quick Specs Docking Station Reference Guide [PDF]
8440p new HP Docking Station (NZ222AA#ABA) for staff
8460p new HP Docking Station (VB043AA#ABA) for faculty

nc6320 changeLog 6710b changeLog 6930p changeLog 8440p changeLog

8460p 8470p

dc7700 changeLog dc7800 changeLog dc7900 changeLog 6000 Pro changeLog

 

HP Insight Diagnostics: dc7700 dc7800 dc7900


System Requirements for Windows 98, 2000, XP, Vista, 7

 

Network Card information

EPSON Point-of-Sale Solutions
NVIDIA RIVA TNT2 M64 Driver for Windows Vista
Mac OS X printer compatibility


icacls C:\users\public\desktop /inheritance:e /grant:r "%username%":(OI)(CI)(F)
REM enable UAC
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f
dsquery user -samid %username% | dsget user -memberof | dsget group -samid

Form filler bookmarklet site...   txt

C:\Users\%username%\AppData\Local\Microsoft\DCA

$AutoItTimeStampExample = @year & "-" & @mon & "-" & @mday & " " & @hour & ":" & @min & ":" & @sec

;Long Live XP
Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System\Shutdown" /v "ShowHibernateButton" /t REG_DWORD /d "1" /f

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v SyncMode5 /t REG_DWORD /d 3 /f

http://www.zdnet.com/article/registry-hack-enables-continued-updates-for-windows-xp/
Reg.exe add "HKLM\SYSTEM\WPA\PosReady" /v "Installed" /t REG_DWORD /d 1 /f


https://technet.microsoft.com/en-us/library/ee844140%28v=ws.10%29.aspx
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLinkedConnections /t REG_DWORD /d 1

8440p audio fix

HKEY_CURRENT_USER\Software\Microsoft\Office\Word\Addins ... as per fp#21630, change LoadBehavior from 0 to 3

Bookmarklet to show table cell borders
javascript:var%20t=document.getElementsByTagName('td');for%20(i=0;i<t.length;i++){void(t[i].style.border='1px%20solid%20black');}

REM yyyy-mm-dd hh:mm:ss timestamp in batch file....
echo %date:~10,4%-%date:~4,2%-%date:~7,2%%tab%%time:~0,2%:%time:~3,2%:%time:~6,2%

https://support.office.com/client/Supported-browsers-for-Outlook-Web-App-7bb72d5f-0b1d-47f6-bd6f-2623ab3aeed8
http://tsd.gmu.edu/services/office365/knownissues/SystemSpecificIssues/outlookwebapp.cfm#CP_JUMP_18711
//Excel formula for creating a column that can be used to sort IP addresses (assuming list is in first column)
//Example conversion:  192.168.123.1 becomes 192168123001 and 192.168.5.001 becomes 192168005001 so that they can be sorted properly
=TEXT(SUMPRODUCT(MID(A1,FIND("#",SUBSTITUTE("."&A1,".","#",{1,2,3,4})),FIND("#",SUBSTITUTE(A1&".",".","#",{1,2,3,4}))-FIND("#",SUBSTITUTE("."&A1,".","#",{1,2,3,4})))*10^{9,6,3,0}),"000000000000")
//Shortcut to printers as separate queues with Location column
%windir%\explorer.exe /e,::{2227A280-3AEA-1069-A2DE-08002B30309D}
wmic UserAccount where Name="localUserName" set PasswordExpires=False
REM fast folder deletion
cd foldername
echo ARE YOU SURE??????
pause
DEL /F /Q /S *.* > NUL
RMDIR /Q/S foldername
dism.exe /online /Cleanup-Image /CheckHealth
dism.exe /online /Cleanup-Image /ScanHealth
dism.exe /online /Cleanup-Image /RestoreHealth
sfc /scannow
Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
Dism.exe /Online /Cleanup-Image /StartComponentCleanup
pause
#PS Ping with TimeStamp
Ping.exe -t "google.com" | ForEach {"{0} - {1}" -f (Get-Date),$_}
Set-Service MapsBroker -StartupType Disabled
Get-Service -Name OneSyncSvc | Set-Service -StartupType Disabled
$current = (Get-WmiObject "Win32_TSGeneralSetting" -Namespace "root\cimv2\TerminalServices" -Filter "TerminalName='RDP-tcp'").SSLCertificateSHA1Hash
"Previously using:  $current"

$Thumbprint = (Get-ChildItem -Path Cert:\LocalMachine\My | Where {$_.Issuer -like "CN=EKU Internal Subordinate CA*" -and $_.Subject -like "CN=$($env:COMPUTERNAME).*"}).Thumbprint
$path = Get-WmiObject "Win32_TSGeneralSetting" -Namespace "root\cimv2\TerminalServices" -Filter "TerminalName='RDP-tcp'"
Set-WmiInstance -Path $path -Arguments @{SSLCertificateSHA1Hash=$Thumbprint} | Out-Null

"Now we are using:  $((Get-WmiObject "Win32_TSGeneralSetting" -Namespace "root\cimv2\TerminalServices" -Filter "TerminalName='RDP-tcp'").SSLCertificateSHA1Hash)"s

EKU TodayEKU Students Today

If not sure about browser version, please copy and paste in the information from this linked page. Page will open in a new tab.
reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /f

Last modified February 01, 2024 at 11:00 am


...