| No option to Send to Desktop OR Open File Location |
-
UiPath
Show all posts related to UiPath
-
Windows
Show all posts related to Windows
-
Web Design
Show all posts related to Web Design
How to create a desktop shortcut for the NEW Microsoft Teams
[Fixed] Remote desktop taskbar hidden behind local taskbar in full screen
This happens a lot to me. There are times when I open a remote desktop and go fullscreen, the taskbar will be hidden behind the local taskbar and it’s annoying.
Here’s how to fix it:
Simply restart Windows Explorer within Task Manager. In detail:
- Right click on your taskbar
- Open Task Manager
- Under Processes, find Windows Explorer and right-click
- Click Restart
- Fixing remote desktop taskbar
- How to fix remote desktop taskbar covered by local taskbar
- Remote desktop taskbar hidden behind local taskbar
- Remote desktop taskbar covered in full screen mode
- Remote desktop taskbar issue
- Problem with remote desktop taskbar
How to Setup IIS and PHP on Windows 10 Desktop
Basically I followed this step-by-step from Microsoft, but for my own sake I'm writing my own so it's easier to find.
Setup IIS from Windows Control Panel
- Open Control Panel >> Programs >> Turn Windows features on or off
- Select Internet Information Services >> Expand and check CGI under World Wide Web Services -- Application Development Features
- Test by opening http://localhost/ on your browser
Download and Install PHP
- Create a C:\PHP folder on your local drive
- Download latest PHP non-thread-safe zip package from Windows PHP Download Page
- Download WinCache from SourceForge
- Extract PHP zip files to C:\PHP
- Extract WinCache zip files to C:\PHP\ext
- Open Control Panel >> System and Security >> System >> Advanced System Settings
- On System Properties >> Go to Advanced tab and add a C:\PHP System Variable under Environment Variables
- Open IIS Manager >> Select your machine under connections >> Open Handler Mappings
- Add Default Document by going to Default Document >> Add >> add default.php and index.php
- Create a PHP Info page to test
- Create a phpinfo.php file on Notepad++ (run as Admin) with the following code:
<?php phpinfo(); ?>
... and save inside C:\inetpub\wwwroot\
- Open http://localhost/phpinfo.php on your browser and you should see this page
End. :)
Hope this helps.
How to install Active Directory on Windows 10
On your Desktop, Start >> Settings >> Apps >> Apps & Features >> Optional features >> Add feature
Look for RSAT: Active Directory Domain Services and Lightweight Directory Services Tool
How to edit hosts file in Windows 10
Might come in handy!
1. Run Notepad as Administrator (right click > Run as Admin)
3. Add the IP and hostname on the last line then save. In this case I added two hosts for surfandperf and google. You may read the commented part for more details.
How to create a "run as different user" shortcut for SQL Server
Problem: I always need to open SQL Server using my admin account but I don't want to keep on doing right click + run as different user, then type my admin username and super long admin password.
My solution? I created a shortcut that launches SQL Server using a different user. Now all I have to do Run "sqlserver" and the app will automatically open using my admin account. Saved me a lot of keystrokes! Hahaha

Create a shortcut to SQL Server with the following target and place it in your User folder.
C:\Windows\System32\runas.exe /savecred /user:domain\surfandperf-admin "C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"
- Navigate to where your SQL Server executable file is.
Usually it's inside C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\ as ssms.exe - Right click ssms.exe >> Send to >> Desktop (creates a shortcut)
- On your Desktop >> right click the SQL Server shortcut created >> go to Properties >> update the target to this:
C:\Windows\System32\runas.exe /savecred /user:domain\surfandperf-admin "C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"
Basically I just prepended the target with the red text, making sure to replace the /user:domain\surfandperf-admin part with the domain and username I want to login with.
I used /savecred to save the password for future launches - Move to the shortcut to your user folder and rename it with whatever you want the shortcut name to be. Your user folder is inside C:\Users
On first launch it will ask for a password, then it will remember it until you change your password.
Hope it works! I really just want fewer clicks and keystrokes for everything hehe.
How to add programs on Windows Startup
Because I always forget where to put my screensaver app so that it launches upon startup, here's a note to self:
On the run dialog, enter "shell:startup"
OR
Open %AppData% >> Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Yup, that's it. :)
[PowerShell] Monitor active log files in Windows using type -wait command
To do so, simply open Windows PowerShell on your machine and run the following command:
[Windows] How to open multiple apps at once using the run dialog
I choose to do the latter because it's easier for me.
Here's the syntax. Suppose I want to launch Notepad, Calculator, and Task Manager in one go:
- This command basically tells the computer to execute the program followed by the start command.
- The & allows you add multiple commands.
- Remember to use the program's process name in order to launch them properly










