-
Recent Posts
Archives
- May 2012 (26)
- April 2012 (21)
- March 2012 (65)
- February 2012 (94)
- January 2012 (54)
- December 2011 (17)
- November 2011 (11)
- October 2011 (15)
- September 2011 (39)
- August 2011 (57)
- July 2011 (58)
- June 2011 (65)
- May 2011 (53)
- April 2011 (25)
- March 2011 (12)
- February 2011 (18)
- January 2011 (27)
- December 2010 (2)
- November 2010 (14)
- October 2010 (13)
- September 2010 (1)
- June 2010 (11)
- May 2010 (31)
- April 2010 (29)
- March 2010 (19)
- February 2010 (31)
- January 2010 (28)
- December 2009 (11)
- November 2009 (40)
- October 2009 (2)
- September 2009 (8)
- August 2009 (21)
- July 2009 (21)
- June 2009 (27)
- May 2009 (32)
- April 2009 (24)
- March 2009 (41)
- February 2009 (42)
- January 2009 (34)
- December 2008 (30)
- November 2008 (40)
- October 2008 (42)
- September 2008 (52)
- August 2008 (40)
- July 2008 (35)
- June 2008 (38)
- May 2008 (29)
- April 2008 (32)
- March 2008 (59)
- February 2008 (43)
- January 2008 (47)
- December 2007 (30)
- November 2007 (62)
- October 2007 (54)
- September 2007 (43)
- August 2007 (44)
- July 2007 (55)
- June 2007 (57)
- May 2007 (55)
- April 2007 (43)
- March 2007 (61)
- February 2007 (50)
- January 2007 (21)
- December 2006 (7)
- November 2006 (16)
Categories
- .NET
- Active Directory
- Active Directory administration with PowerShell
- Architecture
- BITS
- Books
- COM
- Deep Dive
- DHCP
- DNS
- Events
- Exchange
- File system
- files
- Firewall
- General
- General IT matters
- IT Community
- IT Security
- Learning Powershell
- Math
- Microsoft
- Networking
- Office 2010
- Opinion
- Outlook
- Philosophy
- Powershell
- PowerShell and Active Directory
- PowerShell and Exchange 2007
- PowerShell and IIS
- PowerShell and SQL Server
- PowerShell and WMI
- Powershell Basics
- PowerShell User Group
- PowerShell V2
- PowerShell V3
- PSAM
- Rant
- Science Fiction
- Script of the Week
- Scripting
- SQL Server
- Strings
- Technology
- Uncategorized
- Virtualisation
- Walking
- Windows 7
- Windows 8
- Windows 8 Server
- Windows Server 2008
- Windows Server 2008 R2
- WPF
- WSH
Meta
Twitter
- Preparing for the next UG meeting - PowerShell in Server 2012 - too much to choose from 1 week ago
- Reading about regular expressions in #PowerShell . My head is exploding 1 week ago
- Sat in San Diego airport waiting to fly home after an awesome deep dive 3 weeks ago
- #PowerShell Deep Dive is over. Another awesome event. It's the only place I learn something from every session 3 weeks ago
- #PowerShell v3 jobs give many more options - results available across sessions in many cases 3 weeks ago
Category Archives: Networking
Using Invoke-WmiMethod to set the DNS servers
In the last post I showed that there was an issue with the way the SetDNSServerSearchOrder of the Win32_NetworkAdapterConfiguration class worked This would work $nic = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter “Index=7″$nic.SetDNSServerSearchOrder(“10.10.54.201″) but using Invoke-WmiMethod failed After discussions with Bartek Bielawski … Continue reading
TCP/IP Alternative Configurations: pt IV reset to static address
At some stage we may need to reset our NIC back to having a static address $index = 7 $nic = Get-WmiObject -Class Win32_NetworkAdapterConfiguration ` -Filter “Index=$index” $ipaddress = @(“10.10.54.202″) $subnet = @(“255.255.255.0″) Invoke-WmiMethod -InputObject $nic -Name EnableStatic -ArgumentList $ipaddress, … Continue reading
Posted in Networking, PowerShell and WMI
Leave a comment
TCP/IP Alternative Configurations: pt III set the alternative configuration
We have seen how to set the NIC to use DHCP to get its address. This post shows how to set the alternative configuration on the NIC. If you just want APIPA then do nothing – other wise use … Continue reading
Posted in Networking, PowerShell V2, PowerShell V3
Leave a comment
TCP/IP Alternative Configuration: pt II Set DHCP
The next step on our journey to an alternative configuration is setting the NIC to use DHCP I will keep cheating for now and specify the NIC – on my machine I now it is the NIC whose Win32_NetworkAdapterConfiguration has … Continue reading
Posted in Networking, Powershell, PowerShell and WMI
Leave a comment
TCP/IP Alternative Configuration: pt I The configuration
A question on the forum got me wondering about setting the Alternative Configuration on a TCP/IP properties of a network adapter. NICs are normally configured to either DHCP or a static address. If you use DHCP another tab “Alternative Configuration” … Continue reading
Posted in Networking, PowerShell and WMI
Leave a comment
Setting a Network address in Windows Server 8
Windows Server 8 & Windows 8 bring a host of new functionality to us. I wanted to try out some of it so created a new VM and installed the OS – went for full GUI for now Opened … Continue reading
Changing IP Connection Metric
A question on the forums asked how the connection metrics could be set on a Windows system. We need to start by identifying the network adapters using this function function test-ipmetric { Get-WmiObject -Class Win32_NetworkAdapter -Filter “AdapterType = ‘Ethernet 802.3′” … Continue reading
Posted in Networking, PowerShell and WMI
Leave a comment
Hosts file – add an IPv6 address
This builds on adding an IPv4 address – http://msmvps.com/blogs/richardsiddaway/archive/2011/10/24/hosts-file-add-a-record.aspx function add-IPv6hostfilecontent { [CmdletBinding()] param ( [parameter(Mandatory=$true)] [string]$IPAddress, [parameter(Mandatory=$true)] [string]$computer ) $file = Join-Path -Path $($env:windir) -ChildPath “system32\drivers\etc\hosts” if (-not (Test-Path -Path $file)){ Throw “Hosts file not found” } $data = … Continue reading
Posted in Networking, PowerShell V2
1 Comment
IPv6 Link local addresses and device identifier
If I run ipconfig on my system the partial results are this Wireless LAN adapter Wireless Network Connection: Connection-specific DNS Suffix . : tiscali.co.uk Link-local IPv6 Address . . . . . : fe80::6d95:b824:6a72:a0a9%11 IPv4 Address. . … Continue reading
Posted in Networking, PowerShell and WMI
Leave a comment
Working with IPv6
A comment was left on one of the articles in my recent series on working with the hosts file asking about using IPv6. I’ve not used it really as I’ve never had any reason but it seems a good idea … Continue reading
Posted in Networking, PowerShell and WMI, PowerShell V2
Leave a comment