sample csv file

How to Fix Robocopy: Directory Is Not Visible on the Destination Drive

When copying from the root directory of a drive to a folder (non-root directory on a different drive), this can happen.RoboCopy may set the new directory to hidden, as it copies the system attribute of the root folder of the drive over to the new folder. You can prevent the new directory from becoming hidden by adding Read More

sample csv file

How to Fix “A drive with the name ‘HKU’ does not exist” on PowerShell

How to fix “A drive with the name ‘HKU’ does not exist” on Powershell The error:   Cannot find drive. A drive with the name ‘HKU’ does not exist.+ CategoryInfo : ObjectNotFound: (HKU:String) [Remove-Item], DriveNotFoundException+ FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.RemoveItemCommand+ PSComputerName : clt64792 By default, only the following PowerShell drives referencing registry locations are defined: PS> Get-PSDrive Read More

sample csv file

How to Perform a Silent Installation of Intel Software

The available options are:[-q|-quiet|-s|-silent] – Silent installation with no user interface[-l|-log <LogFileName>] – Log to a specific file[-repair] – Repair (Or install if not installed)       For examples: Installation command line example:  Install:  WiFi_21.60.2_Driver64_Win10.exe -q -sInstall:  SetupChipset.exe -q -s Uninstall command line example: Uninstall: WiFi_21.60.2_Driver64_Win10.exe -uninstallUninstall: SetupChipset.exe -q -uninstall

sample csv file

How to Change the TimeZone by Using PowerShell

Azure VM sets it’s time zone as UTC by default. Sometimes, the settings might also grey out, so you cannot modify it from the GUI. So, it follows the time always until you set a different time zone. I am doing the settings in the following way:. I hope this will help you too.The steps Read More

sample csv file

How to Send Ctrl+Alt+Del to Remote Desktop?

Method 1 – Ctrl+Alt+End on an On-Screen Keyboard: The on-screen keyboard approach, a popular method, is to use the On-Screen Keyboard of the remote device. Of course you have to previously enable remote connections and create a remote user. Once you have opened the remote session, the utility for this method can be accessed by Read More

sample csv file

How to Mount an Azure File Share with Windows 10/11

Prerequisites Ensure port 445 is open: The SMB protocol requires TCP port 445 to be open. Connections will fail if port 445 is blocked. You can check if your firewall or ISP is blocking port 445 by using the Test-NetConnection cmdlet. See Port 445 is blocked. Using an Azure file share with Windows To use an Azure file Read More