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
How to Create Folders from a CSV file by Using PowerShell
Here is a sample csv file with a title called “Organizations”. Below, please see the scripts #Crated by Summa, 2024-10-23 $file= “C:Tempfolders.csv” if (Test-Path $file) { $item=Get-Item $file Write-Output “The csv file exists. Details:” $item } else { Write-Output “The csv file does not exist.” } Read More
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
How to Deploy an Application by Creating an Atera Script
Note: To create a script: 1. Go to Admin > Monitoring and automation > Scripts. 2. Click Create script. The Create script page appears. 4. Fill in the mandatory fields: 5. Click More script properties to fill in other fields (optional). 6. Enter the script in the script editor. Then click Create. The script is created and will appear in the My scripts tab. Create, upload, and generate Read More
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
How to Configure KnowBe4 with Microsoft Entra ID (Formerly Azure Active Directory)
In this article, you’ll learn how to configure SCIM with Microsoft Entra ID (formerly Azure Active Directory). Configuring SCIM for Microsoft Entra ID will allow you to add and manage users and groups in your KSAT console using Microsoft Entra ID. The instructions in this article are for third-party software. If you experience issues with Read More