Archive for the ‘ Windows ’ Category

Disable Cortana on Windows 10

If you’re using Windows 10 Professional or Enterprise, the easiest way to disable Cortana is by using the Local Group Policy Editor.

Launch the group policy editor by pressing Windows + R, typing gpedit.msc into the box, and pressing Enter:

gpedit

Navigate to Computer Configuration > Administrative Templates > Windows Components > Search.

Locate the Allow Cortana setting in the right pane and double-click it:

allow-cortana

Set the Allow Cortana option to Disabled and then click OK:

allow-cortana-2

You can now close the group policy editor. You’ll have to sign out and sign back in – or restart your PC – for this change to take effect.

See original article here:
https://www.howtogeek.com/265027/how-to-disable-cortana-in-windows-10/

 

Batch rename file extensions in Windows

This is a handy trick I found when I needed to batch rename a hundred .THM files to .JPG.
Open DOS and run the following command:

ren *.XXX *.YYY

Where XXX is the source and YYY is the target extension.
That’s it!

Deleting the winsxs folder

In C:\Windows there is a system folder called “winsxs” which stores all the installation files used to update and upgrade Windows.

This folder, on my Windows 7 64-bit system, took up 12GB of space on my precious 80GB SSD drive.

Launch the DOS prompt with administrator rights and run the following command to remove all the files.

Dism.exe /online /Cleanup-Image /SPSuperseded

Moving the MSOCache files

When you install Microsoft Office, by default it will leave a folder of installation files on the C: drive. You cannot delete this folder because every time MS Office needs to update itself, it uses those files.

With the MS Office 2013 edition, I have a folder with 830MB of files! On a small SSD, this is precious space that needs recovering. So what to do?

One trick I came across today is to move those files to another disk and create a symbolic link to them:

mklink /D "C:\MSOCache" "D:\MSOCache"

And that’s it!

 

Creating symbolic links in Windows

I learned today, it’s possible to create a symbolic link in Windows! Here’s what you need to do:

  1. Run the DOS prompt as Administrator.
  2. Use the following command as an example:

    mklink /D "C:\MSOCache" "D:\MSOCache"

  3. Without the “/D” it’ll be a symbolic link for a file. To link a directory and all its files, use the “/D” option.
    The first variable will be the actual symbolic link.
    The second variable is where the files will actually reside.

Windows 7 logon screen keyboard issue

My logon screen defaulted to US English or UK English keyboards and I was not able to log in efficiently.

Fixed with the following steps:

Open Windows Control Panel:

control_panel_region

Click on “Copy settings”:

logon_screen_1

Then check the first checkbox, followed by “OK”:

logon_screen_2

Changing the default keyboard to Japanese

When the machine first boots, the login screen defaults to the US QWERTY keyboard.
To change the default keyboard to something else, do the following:

More info:
http://support.microsoft.com/kb/138354

Forcing Windows to use a Japanese keyboard

To force the operating system to use a certain keyboard, make the following changes in the registry.

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters

Value name Value type Value data
LayerDriver JPN REG_SZ kbd106.dll
OverrideKeyboardIdentifier REG_SZ PCAT_106KEY
OverrideKeyboardSubtype DWORD 2
OverrideKeyboardType DWORD 7

More information:
http://support.microsoft.com/kb/927824/en-gb

Installing Adobe CS2 on Windows 7 64-bit

My initial attempt to install Adobe CS2 onto Windows 7 64-bit (hereafter W764) was unsuccessful. W764 has two program folders:  “Program files” and “Program files (x64)”.

By default the installer will try to install into “Program files (x64)” and the unsupported characters “( )” make the path void. I changed this to the other “Program files” folder and continued the installation.

However, upon starting the programs, I was met with a “Your adobe photoshop user name, organisation, or serial number is missing or invalid” kind of error and the application quits automatically. Checking registry editor showed that there was indeed an issue with the installation paths.

Searching the problem on Google gave me the solution. The application must be installed into the “Program files (x64)” folder or it will not work. To do this, the path must be changed to:
C:\progra~2\adobe
in the  installation destination.