This article will demonstrate how to configure a cisco router to allow the wireless and wired networks to communicate on the same vlan and subnet.
IOS version: 12.4(15)T12
Router Model: Cisco 877W
Router Series: Cisco 880 Series Integrated Services Routers
I know this is a simple thing, but its one thats easy to forget, anf you can find yourself in a bit of a pickle.
When you have entered a service-module session, for example connecting to an integrated access point, and you would like to disconnect and return back...
Powershell script to delete a folder or directory if it exists:
$strFolderName="c:\temp\"
If (Test-Path $strFolderName){
Remove-Item $strFolderName
}
See Also:
Powershell: Check If File Exists
Powershell: Delete File if Exists
Test-Path
Remove-Item
Powershell script to check if a file exists
$strFileName="c:\filename.txt"
If (Test-Path $strFileName){
# // File exists
}Else{
# // File does not exist
}
See Also:
Powershell: Delete File if Exists
Powershell: Delete Folder if Exists
Test-Path
Remove-Item
After uninstalling Novell ZENworks agent from my Windows Server 2008R2 machine, a “ZENworks Adaptive Agent” icon was leftover on the desktop, with no way to delete it.
This icon is set by registry entries.
To remove it, delete the following Key:
Source:...
You can use this procedure to add the Log on as a service right to an account on your computer.
To open Local Security Policy, click Start, point to Control Panel, point to Administrative Tools, and then double-click Local Security Policy.
In the console tree,...
There are a number of reasons why you may need to find and remove inactive computers from active directory. Test computers and servers that were removed without disconnecting from the domain, or in my case, a computer fleet upgrade. New computers were brought in...
This is a case study of a project I worked on for Landcom.
As the New South Wales Government’s property developer, Landcom is charged with delivering the state’s plans for urban growth and change, while providing best practice sustainable development....
In exchange 2010 SP1, users are not receiveing quota warning messages when they are beyond the Issue Warning threshold.
Microsoft have an article relating to this issue.
Users do not receive quota warning messages after you apply Service Pack 1 for Exchange Server...
Run the following powershell script to grant a user or group full access to a mailbox.
Add-MailboxPermission -Identity '' -User '' -AccessRights 'FullAccess'