When running Get-ReceiveConnector, the contents of the RemoteIPRanges field may be truncated if there are a lot of entries. You can "expand" the list:
Get-ReceiveConnector MyConnector | Select -expand RemoteIPRanges | FT
This will expand each of the IP range objects and FT makes sure it's nicely formatted in a table. For single addresses, you only need the LowerBound column, but if ranges have been specified, you probably want both columns.
You can easily backup the complete configuration of a Brocade FC switch through the CLI. It works similar to that of a Dell or Cisco switch, allowing to copy the configuration to a remote server. FTP, SCP, SFTP and others are supported.
Log on to your switch through the CLI, then:
Switch1:admin> configupload Protocol (scp, ftp, sftp, local) [ftp]: scp Server Name or IP Address [host]: 1.2.3.4 User Name [user]: remoteuser Path/Filename [<home dir>/config.txt]: /home/remoteuser/switch1.txt Section (all|chassis|switch [all]): all remoteuser@1.2.3.4's password: configUpload complete: All selected config parameters are uploaded
If you encounter the following error message while trying to backup the internal database (IDB):
The reason might be due to the backup being initiated by the Inet process which may run as a certain user account that has not been added to the impersonation of the cell manager.
To resolve, follow these steps:
Found this interesting read on VMFS Extents and some of the (negative) myths that have arisen over the years:
https://blogs.vmware.com/vsphere/2012/02/vmfs-extents-are-they-bad-or-simply-misunderstood.html
Or: How IT rack cabling should be done...:
http://www.buzzfeed.com/lukebailey/satisfying-cables#.lrA32V2pV
Using ADUC, it can be quite a hassle to find and/or unlock AD accounts. Powershell solves this by providing some neat commands for a system administrator to use.
To list all locked out AD accounts:
Search-ADAccount -LockedOut
To get more info about these accounts, you can do a Full-List:
Search-ADAccount -LockedOut | FL
Furthermore, you can pipe the output to quickly unlock some/all AD accounts:
Search-ADAccount -LockedOut | Unlock-ADAccount
A very good guide on how to configure your Aerohive wireless network to use RADIUS authentication to authenticate users against a Windows Active Directory, and setting network access (VLAN) based on their group membership:
Sometimes, being an Administrator just isn't enough. In that case, try being the SYSTEM account... You can run processes as the local SYSTEM account quite easily with PsExec (64-bit).
Use it as follows:
psexec -i -s cmd.exe
The command above would run a command prompt as the SYSTEM account. You can replace cmd.exe with something else, although from a command prompt, you can basically run anything else, all as the SYSTEM account.
When running an app, you may encounter the following error:
When attempting to reinstall the app, the error persists.
To resolve, try running the following command from a terminal:
sudo xattr -rc /Applications/Application.app
Replace Application.app with the full path of the application that has the problem.
I had this problem when installing Wineskin Winery on a Mac OS X 10.8.5. A freshly downloaded copy immediately gave the error but after adjusting the attributes on the app, it worked properly.
« ‹ | December 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |