Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TeflonJim

    DNS Setup Help

    UDP Port 53 (outbound only). If you're using Forwarders, only to the Forwarders, if you're using Root Hints, to everywhere. Chris
  2. TeflonJim

    DNS Setup Help

    Yep, those would do. I would have to suspect a network issue if it's failing to resolve with root hints (normally just too much blocked). Anyway, if you set the Forwarders to your ISPs DNS servers, then try again? Chris
  3. TeflonJim

    DNS Setup Help

    No, it shouldn't be external, it'll just break things for an AD domain. Check your Forwarders if you have any set? To check the forwarders: 1. Open the DNS Console 2. Right click on your server and select Properties 3. Select the Forwarders tab 4. For each IP listed there (if any) run...
  4. TeflonJim

    Remove newline in write-output

    The reason you're seeing this behaviour is that you're passing two values into Write-Output. If you want them on the same line you may find it most appropriate to use the two values within a single string: Get-ChildItem -Recurse | %{ if ($_.FullName.Length -gt 245) { write-output...
  5. TeflonJim

    Viewing stale Resource Records before scavenging

    The results of the script are open to a little interpretation. To get an accurate list of records that would be Scavenged you would first have to enable Aging (but not automatic scavenging). Until you do that TimeStamps associated with records are not properly replicated, that means you can get...
  6. TeflonJim

    Viewing stale Resource Records before scavenging

    Those are just example values, not something I expected anyone to use (where I am the script author). You should replace the entry in this line with your own Domain Controller name: Set objWMIService = GetObject("winmgmts:\\dc01.internal.highorbit.co.uk\root\MicrosoftDNS") And the domain name...

Part and Inventory Search

Back
Top