Jump to content

Recommended Posts

Posted
I wonder if you could ping an emoji name though?

 

Is it not the friendly name or Computer Description like "Dave's Laptop" instead of the NetBIOS/Computer Hostname?

Posted
In PowerShell, Ctrl + Space after a dash reveals all possible cmdlet parameters without having to tab through them one at a time.

 

5MOfGW.gif

 

Credit:

 

To add to the coolness of that... you can do that at any point of typing a cmdlet too... so say Get-NetA and Ctrl-Space will bring up the cmdlets starting with those characters.

  • Thanks 4
Posted (edited)
I wonder if you could ping an emoji name though?

It is actually possible to ping a computer with an emoji name, although neither PowerShell or the Command Prompt display the emoji(s) correctly. I think I will wait a bit longer before renaming all of my domain PCs with emojis. 😵

 

Vz3QjK.png

 

2FoQNI.png

 

Mapped drives containing emojis display correctly though. 👍

 

P6gtBP.png

 

Is it not the friendly name or Computer Description like "Dave's Laptop" instead of the NetBIOS/Computer Hostname?

Nope. :)

 

uctW6I.png

 

diqEmg.png

Edited by Arthur
  • Thanks 2
Guest mrtems1
Posted
Shift + Right-Click on an item in Explorer provides additional options, including Copy as path and Run as different user
Guest mrtems1
Posted

Create a new folder and call it GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

 

 

This will create a folder with a bunch of convenient links to all sorts of settings.

  • 2 weeks later...
Posted
ChromeOS: Chromebooks lack a dedicated 'Delete' button: Hold down 'Alt' and press 'Backspace'

 

This one has reminded me of a neat trick on Windows machines (may work on others, but haven't tried)

Instead of highlighting a word or pushing backspace multiple times (or holding it down and no doubt deleting part of the word before it!)....

 

Push CTRL + Backspace to delete the entirety of a word.

Posted

Check Windows application runtime dependencies with PowerShell.

 

$Programs = Get-WMIObject Win32_InstalledWin32Program | Select-Object Name,ProgramID
$Result = ForEach ($Program in $Programs) {

   $Name = $Program.Name
   $ProgramID = $Program.ProgramID
   $FMapp = Get-WMIObject Win32_InstalledProgramFramework -Filter "ProgramID = '$ProgramID'"

   ForEach ($FM in $FMapp) {
       [PSCustomObject]@{
           'Name'               = $Name
           'ProgramID'          = $ProgramID
           'FrameworkPublisher' = $FM.FrameworkPublisher
           'FrameworkName'      = $FM.FrameworkName
           'FrameworkVersion'   = $FM.FrameworkVersion
       }
   }
}

$Result | Out-GridView

 

Cv5Tgvb.png

 

Credit: www.theexperienceblog.com/2017/03/17/checking-win32-application-runtime-dependencies-in-windows-10/

  • Thanks 1
Posted
Check if an IR remote is working by looking at it through your phone camera (doesn't work on iPhones, does work on most webcams) - it should show the flickering of the transmitter.
Posted (edited)
Check if an IR remote is working by looking at it through your phone camera (doesn't work on iPhones, does work on most webcams) - it should show the flickering of the transmitter.

My forward facing camera on my phone doesn't work ('selfie' camera does)

 

:)

 

Edit: Alcatel (Android)

Edited by 6Foot2
Posted

never worked on any phone I have tried it on - Samsung phones and Alcatel tablet

 

nice if it would work but I guess you need to try it out and know of a camer that it works on - then it can be used to test them

Posted
never worked on any phone I have tried it on - Samsung phones and Alcatel tablet

 

nice if it would work but I guess you need to try it out and know of a camer that it works on - then it can be used to test them

 

My Alcatel's selfie camera and our TV remote:

 

Selfie Camera And TV Remote.jpg

 

(I also found that my forward facing camera works! I must have been thinking of my previous phone...)

Posted
systeminfo at a command prompt will tell you when a PC booted up and when it was first installed, along with a whole host of other useful stuff.

 

Annoyingly, this now shows when the last feature update was installed.

 

To find the original build date, this normal does the trick

 

Open your Program Files folder: (C:\Program Files (x86)),

In the Program Files window, select View from the menu ribbon.

In the View menu, inside the 'current view' group, click Add Columns.

Select 'Date Created'

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...