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. woter324

    Access instantiated object from process ID

    Or perhaps a better way of putting it: How do I expose com properties from the process ID? Thanks A.
  2. woter324

    Access instantiated object from process ID

    Hi, I'm writing an automation script that launches various IE windows with different URL's pointing to monitoring applications. Some of these applications require logins and setting to specific pages. These are passed from an XML file. I have achieved this by executing a AutoHotKey script...
  3. woter324

    Script to retrieve AD CA issued certificates: Sort it

    Hi, I have the code below that I can point to my local Active Directory Certificate Authority and it will pull back expiring certificates, based on a set number of days. It works well, however, I am having difficulty sorting the output by $cert."Certificate Expiration Date" and it also seems to...
  4. woter324

    Cannot validate argument on parameter 'MySiteHostLocation'. The argument is null....

    Hi, This one's been killing me all week. Thankfully a short week! This snippet of a script connects to a SharePoint "app" server using PS Remoting and attempts to update the profile photos. Problem is, its telling me that one of the arguments is empty, but I cannot fathom why. Everything I...
  5. woter324

    InternetExplorer.Application access element with no ID

    Thanks for your help Geates. Unfortuanatly, I'm still getting "Object Required" on the Set oAnchor(0)... line. The code I have tried: Set oSpan = oIE5LT.Document.getElementById("firstStatusCritical") Set oAnchor = oSpan.getElementByTagName("a") oAnchor(0).click() MsgBox oAnchor(0).value...
  6. woter324

    InternetExplorer.Application access element with no ID

    Hi, I'm trying to automate the opening and login of several of our monitoring system web pages. It was all going well until I had to do HP System Insight Manager (SIM) where there is no ID tag given for me to tell it to ".click()". On other pages, I have done this: Set oIE5LB =...
  7. woter324

    PS Errors. Handling output of command write-EventLog

    Hi, I have a command that errors. I know why it errors but want to write it to the windows event log. I can write my own text to the event log, but I want it to write the stderr to the event log. The short version of my code: try{ $crd = credentials $server $user $session = New-PSSession...
  8. woter324

    Additional IP Address assigned by system, in error

    I've disabled isatap under Network adapters in Device Manager and thus far the additional static IP hasn't come back. Reading this blog it looks like isatap is to do with IPv6 which we don't use. IPv6 has always been unticked in the "Local Area Connection" properties. Thanks
  9. woter324

    Additional IP Address assigned by system, in error

    Hi All, I have an interesting problem that seems quite unique and is hard to categorise. It may be OS, VM or Networking. On a Windows 2008, Enterprise 64-bit server we are seeing an additional static IP address being assigned by something. This IP address belongs to another system on a...
  10. woter324

    Dictionary object question

    Thanks jges, Both suggestions worked. I Looked back at some code i wrote a while ago using the same method and noticed there was no 's'. Grrrr!. If I return just the array, how might I be able to pull out different items. I think it should be something like: Sub process() sFilePath =...
  11. woter324

    Dictionary object question

    Hi, I have a text file with two items per line. E.g. Monday=True Tuesday=True Wednesday=False I need to be able to reference the day and it's corresponding boolean value. I have a function with an array to split this out. Due to lack of skill, I am trying to use a dictionary object to...
  12. woter324

    HTTP Post msxml3.dll error '800c005'

    I would have replied to the thread 1281365 but it's closed. I used that thread to get most of the HTTPPOST code. There seems to be quite a few posts on this error, but as I am already subscribed here and so many people have helped me on this site, I am sharing here. I was getting the error...
  13. woter324

    Outlook 2003 Custom Form VBScript Reply button

    Anyone? Any pointers? Many thanks
  14. woter324

    Outlook 2003 Custom Form VBScript Reply button

    Hi, I have a custom form in Outlook 2003. The form has a button on it that activates if items on the form are changed. If the form is changed, It should then change the receipient to the sender (reply). All my Goolge searching does not find any sample code and my attempts have failed. Here is...
  15. woter324

    Delegating permissions in Exchange 2003

    Anyone? Thanks
  16. woter324

    ADSI: Query two branches together. Citrix Password Manager

    As mentioned in the OP, the user's DN is retrieved. I did some string manipulation and now have a list of all users who have CN=QBA. The weak point is that Citrix Password Manager might not always create the QBA record even when a user has configured their self-service settings. If it helps...
  17. woter324

    ADSI: Query two branches together. Citrix Password Manager

    Hi, I am trying to obtain by script both the DisplayName and values created for Citrix PasswordManager from ADSI. Password manager creates values against the user as a new branch under the user, as opposed to a property for that user. For Example: OU=MyOU --> CN=MyUserName -->...
  18. woter324

    Delegating permissions in Exchange 2003

    Hi, We have an AD security group named Role-ExchangeMailboxAdmin. This role should be able to move mail boxes from one mailbox to another without being able to do much else. In short: Set permissions on SELF group of Role-ExchangeMailboxAdmin Delegated Role-ExchangeMailboxAdmin in ESM under...
  19. woter324

    Getting LEAP and Wake-on-Lan working Windows 7

    I thought I'd share a little tail for anyone with similar issues. My goal was to get my Dell D420 laptop configured with Wake-on-lan (WOL) over the wireless NIC (WLAN, Wi-Fi). The D420 has an Intel 3945ABG card installed. I installed Windows 7 on the laptop some time ago. Dell do not provide...
  20. woter324

    Running from VBScript logon script Permissions

    Hi, I have a logon script that for historic reasons is written in VBScript. However, due to Citrix Xen 6, I have had to use powershell to obtain the thin client name using Xen 6 APIs. The powershell script is 'embedded' into the VBScript. No .PS1 file. The code executes successfully for an...

Part and Inventory Search

Back
Top