Download and run the following program:
http://www.mediafire.com/file/p5k57pdubhbnhbt/W10_Logon_BG_Changer_v1.2.7z
Sunday, December 27, 2015
Wednesday, November 25, 2015
Random generator website
Go to the site and it automatically generates what you select. Hit refresh to regenerate.
- small or capital letter: http://www.randomlettergenerator.com/index.html
- 0-9 number: http://www.randomlettergenerator.com/random-numbers-0-9.html
- 0-100 number: http://www.randomlettergenerator.com/random-numbers-0-100.html
- small or capital letter: http://www.randomlettergenerator.com/index.html
- 0-9 number: http://www.randomlettergenerator.com/random-numbers-0-9.html
- 0-100 number: http://www.randomlettergenerator.com/random-numbers-0-100.html
Thursday, October 29, 2015
"Something went wrong" error when you try to start an Office app
1. Restart the computer.
2. Make sure "Microsoft Office Click-to-Run" service is running.
Saturday, September 26, 2015
How to enable Power User Mode in Opera
1. Go to Settings (Alt + P).
2. Click to an empty space to make sure you exit from the search field.
3. Press the following button combination:
Up Up Down Down Left Right Left Right b a4. Press the "I understand, proceed" button in the window appearing.
2. Click to an empty space to make sure you exit from the search field.
3. Press the following button combination:
Up Up Down Down Left Right Left Right b a4. Press the "I understand, proceed" button in the window appearing.
Thursday, July 9, 2015
Windows Experience Index standalone
Download and run the EXE:
http://www.mediafire.com/file/m7tq8l73v1panl8/WEI_Tool.exe
Source:
http://winaero.com/comment.php?comment.news.220
http://www.mediafire.com/file/m7tq8l73v1panl8/WEI_Tool.exe
Source:
http://winaero.com/comment.php?comment.news.220
Sunday, July 5, 2015
How to make Skype work in Trillian
1. Download and install Trillian 5.5 Build 19:
http://www.mediafire.com/file/zgo1misonrcz966/Trillian_5.5_Build_19.exe
After installation, do not launch it!
2. Download and install Skype patch:
http://www.mediafire.com/file/7ecjb6qj4kwmvhg/Trillian_5.5_Build_19_Skype_patch.msi
You can leave this version, updating is optional.
3. Download and install Trillian 5.6 Build 4:
http://www.mediafire.com/file/j8qpg06zth18rkc/Trillian_5.6_Build_4.exe
http://www.mediafire.com/file/zgo1misonrcz966/Trillian_5.5_Build_19.exe
After installation, do not launch it!
2. Download and install Skype patch:
http://www.mediafire.com/file/7ecjb6qj4kwmvhg/Trillian_5.5_Build_19_Skype_patch.msi
You can leave this version, updating is optional.
3. Download and install Trillian 5.6 Build 4:
http://www.mediafire.com/file/j8qpg06zth18rkc/Trillian_5.6_Build_4.exe
Sunday, June 14, 2015
Online tool to remove PDF passwords
Tested and working:
http://smallpdf.com/unlock-pdf
http://smallpdf.com/unlock-pdf
Friday, May 15, 2015
Blank space Alt code for desktop icons
Alt + 0160
Alt + 255
Alt + 255
Saturday, May 9, 2015
Star Wars: Battlefront 2 clientfiles for working serverlist and v1.1 patch
1. Install Star Wars: Battlefront 2.
2. Download and install official v1.1 patch. Below is my upload of it:
https://db.tt/z7yo8XBe
3. Replace "BattlefrontII.exe" with one I uploaded, link below. The one in American clientfiles folder for American servers or European clientfiles for European servers.
http://www.mediafire.com/file/b0vw57p55xg161c/Star_Wars_Battlefront_2_clientfiles.7z
Source: http://gameshare.co/forum/viewtopic.php?f=26&t=76
2. Download and install official v1.1 patch. Below is my upload of it:
https://db.tt/z7yo8XBe
3. Replace "BattlefrontII.exe" with one I uploaded, link below. The one in American clientfiles folder for American servers or European clientfiles for European servers.
http://www.mediafire.com/file/b0vw57p55xg161c/Star_Wars_Battlefront_2_clientfiles.7z
Source: http://gameshare.co/forum/viewtopic.php?f=26&t=76
Sunday, April 26, 2015
Windows Update download location
The download location for Windows Updates is:
C:\Windows\SoftwareDistribution\Download
Saturday, April 18, 2015
How to fix "ERROR #132 (0x85100084) Fatal exception!" in World of Warcraft when using NVIDIA Optimus
1. Right click and select Properties on the desktop shortcut.
2. In the "Target" box, add " -d3d11" to the box and don't forget a space after the ...exe" part.
If you can start the game up with the integrated video card, you just have to set the game to DirectX 11 mode.
You may have to disable "Hadware Cursor" if the cursor doesn' appear in the game.
2. In the "Target" box, add " -d3d11" to the box and don't forget a space after the ...exe" part.
If you can start the game up with the integrated video card, you just have to set the game to DirectX 11 mode.
You may have to disable "Hadware Cursor" if the cursor doesn' appear in the game.
Monday, March 23, 2015
How to fix Windows 10 apps that won't launch or hang at loading screen
1. Open PowerShell in administrator mode.
2. Paste the following code (right mouse click) and hit enter:
2. Paste the following code (right mouse click) and hit enter:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Labels:
apps,
don't,
fix,
hang,
how to,
launch,
loading screen,
not,
windows 10,
won't
Wednesday, March 18, 2015
How to remove top pixels of tabs in Opera
1. Go to Settings (Alt + P).
2. Under User Interface, tick the box next to "Disable tab bar's top spacing when browser window is maximized."
2. Under User Interface, tick the box next to "Disable tab bar's top spacing when browser window is maximized."
Wednesday, February 4, 2015
How to remove all frames from document in Microsoft Word with VBA code
1. Press Alt + F11 to open Visual Basic window.
2. Go to Insert -> Module
3. Paste the following code in the window appearing:
4. Click the Run button or press F5.
2. Go to Insert -> Module
3. Paste the following code in the window appearing:
Sub RemoveFrames()
Dim frm As Frame
For Each frm In ActiveDocument.Frames
frm.Delete
Next frm
End Sub
4. Click the Run button or press F5.
Wednesday, January 28, 2015
Lock screen background file location
The lock screen background files in Windows 8, 8.1 and 10 can be found in the following folder:
C:\Windows\Web\Screen
Wednesday, January 14, 2015
How to fix "Updates are disabled by administrator" error in Google Chrome
- Launch regedit by pressing Win+R and enter "regedit" in the field.
- Go to the following folder:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update - Set the value of "UpdateDefault" to 1.
How to switch back Windows 10 Alt+Tab window to legacy appearance
1. Launch regedit by pressing Win+R and enter "regedit" in the field.
2. Go to the following folder:
2. Go to the following folder:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
3. Add a DWORD named the following and set its value to 1
AltTabSettings
Labels:
alt,
alttab,
how to,
legacy,
switch back,
tab,
windows 10
Subscribe to:
Posts (Atom)