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 Mike Lewis 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. JMcAllister

    ID Extension using a trunk?

    They are loop start... ~ jmcallister
  2. JMcAllister

    ID Extension using a trunk?

    On an Option 61C, I'm looking for a command that will ID an extension that is using a specific outgoing trunk, or that will show the last extension that accessed a specific trunk. I am having an issue with CO trunks staying busied out, and I have to manually disable and re-enable to get back to...
  3. JMcAllister

    variables won't pass into code

    In your IF statement, try removing the quotes from sku...? ~ jmcallister
  4. JMcAllister

    VBScript newbie question

    Run your script with the debug option (//x) step thru and check the value of compModel, in the Locals window. It looks like .Model returns a string value that contains 31 chars (approx.) so your string is padded with spaces... BTW, you could use Set colSettings =...
  5. JMcAllister

    scripts to report the space and memory usage on the server

    VBScript with WMI can also return this info...
  6. JMcAllister

    PDC

    Changes to the SAM are handled by the PDC, then replicated to the BDCs. If the PDC is offline and a BDC is not promoted, users will not be able to change their passwords, among other things.
  7. JMcAllister

    log file

    Open Event Viewer, from Log menu select Application, from Log menu (again) select Clear All Events... Decided whether or not you want to save the entries in the log, then on the nexxt pop-up click yes to clear the log. If you aren't concerned with entries in the log, from the Log menu select Log...
  8. JMcAllister

    Changing domain name in batch on directory

    Here is a simple BAT to do this... Run it on a computer in the new domain. Use global.exe from the resource kit to create the list of group members (local.exe for local groups). Then use 'net group' to recreate the group with members from the list. There must be a trust between the domains, or...
  9. JMcAllister

    VPN configuration

    I've used SoftRemotes predecessor SoftPK. Here are a couple of items you can check for troubleshooting. Verify that the client is receiving an IP address from the assigned pool. Check the Security policy on SoftRemote ensuring that the subnet you are trying to reach is configured corectly...
  10. JMcAllister

    Browsing problem

    On each network segment (subnet), a master browser (MB) and backup master browser (BMB) is elected. The MB will maintain the browse list for its segment, collecting the names of all computers there. The MB passes this info to the domain master browser (DMB), typically the PDC. The DMB compiles...
  11. JMcAllister

    Folder Sharing...

    All users as Domain Admins is definitely WRONG. It won't matter if you remove the admin shares, any user could edit the registry to re-add it and force the workstation to reboot, thus restoring the share (or worse)... Users should not need to change the time on their computer, either, that is...
  12. JMcAllister

    Removing Array Elements...

    Use the Filter function... aTmp = Filter(aOrig, aOrig(x), False, vbBinaryCompare) ReDim aOrig(UBound(aOrig) - 1) aOrig = aTmp Be aware that this treats the comparison argument (aOrig(x)) as a string and will exclude all elements containing that string [i.e.: (a.asp, b.asp, aa.asp, ab.asp...
  13. JMcAllister

    How do you disable a warning message during windows logon

    The dialog box is the legal notice dialog. It should not be preventing any services from starting, if it is there are other issues to look at such as service groups and dependencies. But, to disable the dialog you can go to the following key...
  14. JMcAllister

    CTRL+ALT+DEL Problem

    Send Ctrl+Alt+Del to server, select Task Manager, from the Applications tab click on New Task..., in the dialog box type explorer.exe and click OK. This should reinitialize the windows interface, giving you back your icons and such.
  15. JMcAllister

    Date/Time Calculations (Possibly DateDiff)

    DateDiff should work with long dates... Try using IsDate to verify that the date is being passed correctly. If Not IsDate(dtNow) Then MsgBox "dtNow: " & dtNow & " is not a valid date." End If If Not IsDate(dtThen) Then MsgBox "dtThen: " & dtThen & " is...
  16. JMcAllister

    Newbie

    If x < 10 Then 'assuming positive # only x = &quot; &quot; & x '3 spaces ElseIf x < 100 Then x = &quot; &quot; & x '2 spaces ElseIf x < 1000 Then x = &quot; &quot; & x '1 space End If . . .
  17. JMcAllister

    Event Vewer Log

    MS article Q111534 references NT 3.1, but the process is still the same...
  18. JMcAllister

    NET SEND command

    If your username was gman10 and I wanted to send you a mesage to say hello, I would type... net send gman10 Hello! The Messenger service must be running on the system sending the message and the system receiving it. If you are on Win9x, you will need WinPopup.
  19. JMcAllister

    nt 4

    You didn't specify where you want the folder... The script below will create a folder on the C: drive... NewFolder.vbs --------------------------- Set oFS = CreateObject(&quot;Scripting.FileSystemObject&quot;) Set oNet = CreateObject(&quot;WScript.Network&quot;) sys = oNet.ComputerName If Not...
  20. JMcAllister

    Folder Sharing...

    ...Full Access for the Administrators group (normally, unless you change the share permissions), as Chris noted, other users should not have access to the share. If you are concerned about users accessing the share, verify the share permissions and ensure only admins are members of the...

Part and Inventory Search

Back
Top