Advanced Search
Search Results
6 total results found
vmware object type requires hosted I/O
VM will not power on and throws the following error: Object type requires hosted I/O SSH into the ESX-host that’s hosting the VM.Browse to the VM folder containing the disk files. Run the following command: vmkfstools -x check “disk.vmdk”Disk needs repaire...
Simple automatic sftp backup to a remote server
- Create private / public key pair if you don't have one already.-- **ssh-keygen**-- Because you'll be using this in a script, you do not want to enter a passphrase. - Load your public key into authorized_keys file for the correct user on your target server.-...
Native backup location for Cisco FMC
If backups have been succeeding, but automatic copies have been failing and you need to manually retrieve the backup files, they are located here: #### /var/sf/backup/ The easiest way to retrieve them is to login to the console and enter expert mode. Naviga...
Quick PowerShell script to update an AD attribute
# Import AD ModuleImport-Module ActiveDirectory # Import CSV into variable $userscsv$users = Import-Csv -Path C:\Users\EXAMPLE\Documents\UpdateCompanyTest.csv # Loop through CSV and update users if they exist in CVS fileforeach ($user in $users) { # Search ...
Resolving logon errors on thin clients
The following two errors can occur when trying to login to the RDS farms if a user’s roaming profile has become corrupted. * The Group Policy Client service failed the sign-in. Access is denied.* The User Profile Service service failed the logon. User profile...
Configuring Authelia w/ nginx proxy manager
### Files to be installed on nginx proxy server #### auth.conf<p>##/nginx/auth.conf#Basic Authelia Config#Send a subsequent request to Authelia to verify if the user is authenticated#and has the right permissions to access the resource. auth_request /autheli...