Jump to content

Recommended Posts

Posted

On the newer versions of Windows:

 

ALT+CTRL+C turns the screen monotone. I say this not because its particularly useful, but for the same reason we tell people about right alt + arrow keys ;)

  • 4 weeks later...
Posted

In Command Prompt, or PowerShell get the make/model, serial number, and other properties of a computer:

 

Command Prompt Or PowerShell WMIC Commands.jpg

 

The commands:

 

  1. wmic csproduct get name
  2. wmic bios get serialnumber
  3. wmic csproduct get uuid
  4. wmic csproduct get vendor

  • Thanks 1
Posted
Check whether a remote control is working (or just check it for flat batteries) by viewing it through the camera app on your phone. If it's working, you'll see the IR LED lighting up when you press buttons.

 

Dont think it works on IPhones! Especially on any ive had

Posted
In Command Prompt, or PowerShell get the make/model, serial number, and other properties of a computer:

 

[ATTACH=CONFIG]47946[/ATTACH]

 

The commands:

 

  1. wmic csproduct get name
  2. wmic bios get serialnumber
  3. wmic csproduct get uuid
  4. wmic csproduct get vendor

 

 

Add to this "WMIC Computersystem get {property}"

 


     
  1. AdminPasswordStatus
  2. AutomaticResetBootOption
  3. AutomaticResetCapability
  4. BootOptionOnLimit
  5. BootOptionOnWatchDog
  6. BootROMSupported
  7. BootupState
  8. Caption
  9. ChassisBootupState
  10. CreationClassName
  11. CurrentTimeZone
  12. DaylightInEffect
  13. Description
  14. Domain
  15. DomainRole
  16. EnableDaylightSavingsTime
  17. FrontPanelResetStatus
  18. InfraredSupported
  19. InitialLoadInfo
  20. InstallDate
  21. KeyboardPasswordStatus
  22. LastLoadInfo
  23. Manufacturer
  24. Model
  25. Name
  26. NameFormat
  27. NetworkServerModeEnabled
  28. NumberOfProcessors
  29. OEMStringArray
  30. PartOfDomain
  31. PauseAfterReset
  32. PowerManagementCapabilities
  33. PowerManagementSupported
  34. PowerOnPasswordStatus
  35. PowerState
  36. PowerSupplyState
  37. PrimaryOwnerContact
  38. PrimaryOwnerName
  39. ResetCapability
  40. ResetCount
  41. ResetLimit
  42. Roles
  43. Status
  44. SupportContactDescription
  45. SystemStartupDelay
  46. SystemStartupOptions
  47. SystemStartupSetting
  48. SystemType
  49. ThermalState
  50. TotalPhysicalMemory
  51. UserName
  52. WakeUpType
  53. Workgroup

  • Thanks 1
  • 3 months later...
Posted

To run Google Chrome without plug ins or extensions create a new shortcut for Chrome. In the target box enter:

 

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" /high-dpi-support=1 /force-device-scale-factor=1 --disable-extensions --disable-plugins

Google Chrome No Plugins No Extensions.jpg

  • 1 month later...
Posted

Disable Incognito Mode In Chrome [Chrome 68, Windows 10 1803]

 

Create a new DWORD (32-bit) key in Windows Registry at:

 

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies

 

Name this new key IncognitoModeAvailability and set its value as 1.

Posted

The following PowerShell one-liner could be incredibly useful for troubleshooting...

 

Show all events from every event log (300+!) in given time range & then filter/search

 

Get-WinEvent -ListLog * | Where-Object { $_.RecordCount } | ForEach-Object { Get-WinEvent -ea SilentlyContinue -FilterHashtable @{LogName = $_.LogName; StartTime = '[color="#FF0000"]07:25:00[/color]'; EndTime = '[color="#FF0000"]07:30:00[/color]'}} | Select-Object * | Sort-Object TimeCreated | Out-GridView

 

Credit: https://twitter.com/guyrleech/status/1026496845378404353

 

aS5PIX.png

  • Thanks 1
  • 5 weeks later...
Posted (edited)

When pasting from the clipboard hold down 'Shift' [so Ctrl+Shift+V] to strip formatting from copied text.

 

:thumb:

 

[Applies to browsers]

Edited by 6Foot2
Add clarification.
  • Thanks 2
  • 2 weeks later...
Posted

remove permanent maker from classroom whiteboards by going over the marks with dry wipe marker and wiping clean with a cloth. Any remnant is easily cleaned with a little board cleaning solution and cloth.

 

Note: This may contaminate your dry wipe marker so try to match the colour you are removing or use an old, nearly expired, marker.

Posted (edited)

Remotely rename a computer using Powershell with

 

Rename-computer –computername “Old-ComputerName” –newname “New-ComputerName” –domaincredential administrator –force –restart

 

This also changes the name in AD keeping all associations

 

Edit: Just remember to replace the angled speech marks (“,”) with standard speech marks ("), as this can sometimes cause scripts to error. Thanks DJ-1701!

Edited by vascodagama
  • Thanks 4
Posted
remove permanent maker from classroom whiteboards by going over the marks with dry wipe marker and wiping clean with a cloth. Any remnant is easily cleaned with a little board cleaning solution and cloth.

 

Note: This may contaminate your dry wipe marker so try to match the colour you are removing or use an old, nearly expired, marker.

 

Hand sanitiser gel also works nicely to clean up whiteboards. As do first aid kit swabs (isopropyl?).

Posted
Remotely rename a computer using Powershell with

 

Rename-computer –computername “Old-ComputerName” –newname “New-ComputerName” –domaincredential administrator –force –restart

 

This also changes the name in AD keeping all associations

 

Just remember to replace the angled speech marks (“,”) with standard speech marks ("), as this can sometimes cause scripts to error.

  • Thanks 1
Posted
as does whiteboard cleaner

True, but if all you have on you at the time is hand sanitiser...

 

I always bugged the science techs for methanol or acetone. Works absolute wonders at dissolving ink (and with acetone, a fair few plastics too, so be careful). Make sure to open the windows when you're using it though - once got rather overcome with acetone vapour and nearly passed out!

Posted

IPA (isopropanyl alcohol) is also great for cleaning up old laptops

 

I used it on some old rubbish ones that the SEN people wanted for WWW access only

The kids would have gone mad if they were given them in the state they were in - but after a good scrub with IPA they looked almost new - good enough to fool the kids anyway!

  • 3 weeks later...
Posted

The following command will reboot you directly into your BIOS/UEFI firmware from Windows 10.

 

shutdown /r /fw /t 0

 

If you reboot into the UEFI firmware often you could create a shortcut using the command above or even add it to the Win+X menu. This might be a bit quicker/easier than the Shift key method (hold down Shift while clicking on the Restart option on the Start Menu).

 

vmF1xe.png

  • Thanks 1
Posted
The following command will reboot you directly into your BIOS/UEFI firmware from Windows 10.

 

shutdown /r /fw /t 0

 

If you reboot into the UEFI firmware often you could create a shortcut using the command above or even add it to the Win+X menu. This might be a bit quicker/easier than the Shift key method (hold down Shift while clicking on the Restart option on the Start Menu).

 

vmF1xe.png

 

Tried that on several laptops and it doesnt work for me :( just get "couldn't find the environment option that was entered (203)"

Posted (edited)
Tried that on several laptops and it doesn't work for me

Which version of Windows 10 are you using?

 

Edit. Some Googling reveals that the /fw switch was added in Windows 10 v1709.

Edited by Arthur
Posted

PowerPoint: While displaying a presentation:

 

  1. Display a blank screen by pressing full stop (.) or 'B' (upper or lower case)
  2. Return to the first slide by pressing 1 and enter, or press and hold both mouse buttons for 5 seconds.
  3. Annotate a slide by pressing Ctrl+P (press Esc key to cancel this mode)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...