Jump to content

Recommended Posts

  • 2 weeks later...
Posted

Open multiple apps at once from Windows 10 Start Menu

 

A lesser known feature of Windows 10 is the ability to keep the Start menu open after opening apps from it. It allows opening multiple apps at once without re-opening the Start menu.

 

  1. Press the Win key on the keyboard to open the Start menu, or click on the Start button in the taskbar.
  2. Now, press and hold the Win key.
  3. Click on the icon or tile of the app you want to launch. Do not release the Win key. The app will open in the background.
  4. Click on other app icon to open the app in the background. The Start Menu will remain open.
  5. When opened all the required apps, release the Win key to close the Start menu.

  • Thanks 1
  • 2 weeks later...
Posted

[Microsoft Word] Skip to your previous edit using Shift+F5.

 

Shift+F5 again hops back to your starting point for edits before pressing Shift+F5 (cycles between most recent edits)

  • Thanks 1
Posted

One of our Chromebooks refused to charge or turn on, the following sorted it.

 

Hold down the Esc, Refresh, and Power buttons until the charge light turns solid.

Posted

Had a csv list of computers with some software installed - needed to compare it to the computers in in AD. ~Whats in the right list, but not the left.

$output = Compare-Object $txtComputers $adComputers | ? { $_.SideIndicator -eq "=>" } | Select -ExpandProperty InputObject

  • 1 month later...
Posted

Temporarily disable Pi-Hole using a bookmarked URL.

 

http://pi.hole/admin/api.php?disable=[color="#FF0000"]120[/color]&auth=[color="#FF0000"]PWHASH[/color]

 

The amount of seconds the Pi-Hole is disabled for can be changed by replacing 120 with a different number.

 

Replace PWHASH above with the value of your WEBPASSWORD from the setupVars.conf file. You can find this easily by running the following command (after SSH'ing into the Pi-Hole).

 

cat /etc/pihole/setupVars.conf | grep 'WEBPASSWORD=' | cut -c13-

 

Credit: www.reddit.com/r/pihole/comments/81z8jp/temporarily_disable_pihole_using_a_bookmarked_url/

  • Thanks 1
  • 2 weeks later...
  • 3 weeks later...
Posted

Three one-liners for mobile phone users. :)

 

End it with a text: easy mobile switching from Monday 1st July 2019

 

Text 'PAC' to 65075 – and keep your mobile number

If a customer wants to switch and keep their existing phone number, they just text 'PAC' to 65075 to begin the process.

 

Their existing provider will respond by text within a minute. They will be sent their switching code (PAC), which will be valid for 30 days. The provider’s reply must also include important information about any early termination charges or pay-as-you-go credit balances.

 

The customer then gives the code to their new provider, and this company must arrange for the switch to complete within one working day.

 

The new process is designed to be quick and easy, so customers could request their code while looking for a new deal – for example, while on the phone to a new provider, or in store.

 

Text 'STAC' to 75075 – and get a new mobile number

While most people want to keep their mobile number when they switch, around one in six do not. These customers can text 'STAC' to 75075 to request a 'service termination authorisation code'. The rest of the process is the same as above. This takes away the hassle of having to talk to your current provider if you simply want to leave them.

 

Text 'INFO' to 85075 – and find out more

If someone is not sure whether they are still 'in contract', and would have to pay any early termination charges, they can simply text 'INFO' to 85075 to find this out without requesting a switching code.

 

D1edGX.jpg

  • Thanks 4
Posted
Just sent INFO to 85075 and three wanted a follow up text with 'the account holder's date of birth'. This is a PAYG SIM!

 

Just sent one to Plusnet and they sent back the text as advertised, but it also triggered an email with more detailed info included (data allowance, etc.).

  • 3 weeks later...
Posted

Get YouTube transcripts by clicking 'More/Open Transcript' (where available)

 

xpkOgl.jpg

 

Some browsers might show the button without 'More' but they should show the ellipsis:

 

1b1OX9.jpg

  • Thanks 1
  • 1 month later...
Posted
Ultra fast public IP address lookup using Cloudflare's 1.1.1.1.

 

curl -fSs https://1.1.1.1/cdn-cgi/trace | awk -F= '/ip/ { print $2 }'

 

Source: www.commandlinefu.com/commands/view/24675/ultra-fast-public-ip-address-lookup-using-cloudflares-1.1.1.1

 

Or in Windows, with curl: curl -fSs https://1.1.1.1/cdn-cgi/trace | find "ip"

 

or Powershell, via dns so more likely to avoid proxies: Resolve-DnsName o-o.myaddr.l.google.com -Server ns1.google.com -Type TXT | select-object strings -ExpandProperty strings

  • 2 weeks later...
Posted

This is a great tip if you want to permanently set the CPU and I/O priorities of a Windows process without using any third-party utilities.

 

https://twitter.com/guyrleech/status/1183855486225014784

 

cQmnqJ.png

 

https://github.com/guyrleech/Microsoft/blob/master/ifeo%20tiworker%20%26%20mrt%20low%20priority.reg

 

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\tiworker.exe\PerfOptions]
"CpuPriorityClass"=dword:00000001
"IoPriority"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\mrt.exe\PerfOptions]
"CpuPriorityClass"=dword:00000001
"IoPriority"=dword:00000000

 

[b]CpuPriorityClass[/b]    
┌──────────────────────────────┐
│Value  Priority               │
│------------------------------│
│1      Idle                   │
│2      Normal                 │
│3      High                   │
│5      Below Normal           │
│6      Above Normal           │
└──────────────────────────────┘

 

[b]IoPriority[/b]              
┌──────────────────────────────┐
│Value  Priority               │
│------------------------------│
│0      Very Low               │
│1      Low                    │
│2      Normal                 │
└──────────────────────────────┘

 

wy6HBr.png

 

Pg6Rej.png

  • Thanks 1

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