Tag Archive: Windows 10

Emoji keyboard shortcut for Windows

Emoji-Keyboard

I’ve written before about emojis and keyboard shortcuts in google hangouts. But what if you want to enter emojis while using your windows PC?

You can, and it’s super easy…

As long as you’re running an up to date version Windows 10 you can bring up the windows emoji keyboard with a simple keyboard shortcut:

Windows Key + . (Full-stop/Period)
or
Windows Key + ; (Semicolon)

Annoyingly you can only select one emoji at a time.
Once you’ve selected an emoji, the keyboard disappears.
So if you wanted multiple thumbs up, for example you’ll have to copy+paste or bring up the keyboard again.

There’s also a skin colour selector…
Windows-Emoji-Keyboard-Skin-Colour-Selector

If this helps you out please feel free to say thanks by clicking “Buy Me a Coffee” PayPal button in the sidebar (here) or via:https://www.paypal.me/AlanHart

Thank You

Connect Tablet Front/Back Camera Not Working – Intel AVStream Camera – Error code: 0xA00F4243(0xC00D3704)

I bought a cheap (£39.99) Connect 8″ Tablet with Windows 10 from eBuyer. It’s pretty good considering the price.
One problem i have had, when switching between front and back cameras, is getting the following message…

Close other apps
It looks as though another app is already using the camera.
If you need it, heres the error code: 0xA00F4243(0xC00D3704)

After much searching online and reinstalling the camera/driver not solving the issue, there are two ways to get this to work:

windows-10-anniversary-update-download
Method 1: Install Windows 10 Anniversary Update…
(Recommended)

Visit this URL on the device:
https://www.microsoft.com/en-gb/software-download/windows10

Click [Update Now]

Method 2: A basic workaround…

  1. Hold down the windows button and tap the power button (This is the same as holding Ctrl + Alt + Delete) (home button on other devices)
  2. Tap the [Cancel] button.
  3. BOOM! camera works!

Note: You will have to do this each time you switch…Annoying but at least it works without updating!

I believe it does this because the camera app itself is the “other app” mentioned in the error message. As the camera is already in use it fails to switch.

Performing Win + PWR (ctrl+alt+del) stops the current camera and allows it to switch.

Updating to the latest version of Windows 10 fixes the camera app issue.

If you had this problem and it helped you out please tweet or comment below stating the Tablet/Phone model you had the issue with hopefully it will help someone else.

If this helps you out please feel free to say thanks by clicking “Buy Me a Coffee” PayPal button in the sidebar (here) or via:https://www.paypal.me/AlanHart

Thank You

Printer goes offline randomly in Windows Vista, 7, 8, 10 and Server 2003, 2008, 2012

In our office users were complaining of printers randomly going offline even though other users’ computers on the same network were able to print just fine. Usually they would just reboot the PC or disconnect from ethernet and connect to the office wifi instead and it would start working again.

After much exploring of network and IP related settings the solution actually turned out to be ridiculously simple!

Windows Vista and all versions of windows thereafter automatically enable SNMP for networked printers, and if there’s no response to an SNMP message then it stupidly assumes that the printer is offline.
If you didn’t know,  SNMP (Simple Network Management Protocol) is used to get info from network devices (such as printers, switches, routers, servers etc).
Many network printers support SNMP and will happily reply to SNMP requests. In this scenario i discovered that some do not.

Our printers are all reasonably old Brother HL53250DN or HP CP2015 devices (or similar) which seem to have difficulty with SNMP. Essentially Windows will report the printer as offline randomly because it has just tried to get a response via SNMP with no luck.

The easy fix is to just ask Windows politely to not use SNMP to detect printer status.

1. Right-click on the printer in the Printers window
2. Choose the Ports tab
3. Select “Configure Port”
4. Untick the checkbox “SNMP Status Enable”
The printer should then start showing as online again.

This fix has worked on many versions of Windows on the various PCs, laptops and servers in our offices.

Windows Vista
Windows 7
Windows 8
Windows 8.1
Windows 10
Windows Server 2003
Windows Server 2008
Windows Server 2012

If you tried the steps above but the issue presents itself again then you may be able to edit the registry (if you’re comfortable to do so)

To do this…
1. goto HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print
2. Add new DWORD “SNMPLegacy” with value of 1 and restart the PC/Server (if safe to do so)

The issue can occur even if the printer does support SNMP but a firewall or network setting is getting in the way. This happened in one of our other buildings using an older router setup.

If you had this problem and it helped you out please tweet or comment below stating the Windows version and printer model you had the issue with.

If this helps you out please feel free to say thanks by clicking “Buy Me a Coffee” PayPal button in the sidebar (here) or via:https://www.paypal.me/AlanHart

Thank You

Pin .bat Batch File or Shortcut to Start Menu / Taskbar with Custom Icon – Windows 7, 8 & 10

So you want to pin a batch file or shortcut with a custom icon to the start menu / taskbar in Windows 7, 8 and 10?

Easily add a batch file (.bat) to the taskbar by following these steps:

1. Rename your .bat or .cmd file extension to .exe
2. Right click the newly renamed .exe file and select pin to taskbar
3. Rename the file extension back to .bat or .cmd
4. Shift+right click the newly pinned .exe taskbar icon and choose properties
5. Change the file extension from .exe to .bat or .cmd and change the icon as needed. (for lots of system icons here use the path: “%SystemRoot%\system32\SHELL32.dll”)
6. The shortcut will work immediately you’ll need to reboot or just kill explorer.exe in task manager and re-run it to update/refresh the icon if you changed it.

I use the method above to launch .vbs scripts from the taskbar.
Here’s how to create a .bat file to run vbs scripts…

Open notepad to create a blank text file and add one of the following lines
wscript.exe yourscript.vbs (wscript just runs the vbs as a Windows process)
or
cscript.exe yourscript.vbs (cscript runs the vbs in a command/console window)
then save the text file as a .bat file in the same folder as the .vbs script file.

 

If this helps you out please feel free to say thanks by clicking “Buy Me a Coffee” PayPal button in the sidebar (here) or via:https://www.paypal.me/AlanHart

Thank You