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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by serverguy78

  1. serverguy78

    Import and update table

    How do I get it not to overwrite the data that's already there?
  2. serverguy78

    Import and update table

    I tried an append query. It creates duplicates. How do perform an update query?
  3. serverguy78

    Import and update table

    I have a macro that calls import queries to import a table from an offline computer to network table database. I would like the macro to update the data in the network table database. It is overwriting the data in the network table database. How do I fix this?
  4. serverguy78

    Page File Windows 7

    Hello I have a page file script that works fine in Windows XP. However it doesn't work at all in Windows 7. Can someone help me? strComputer = "." Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colPageFiles =...
  5. serverguy78

    Event Viewer question

    Yeah I know.
  6. serverguy78

    Event Viewer question

    You must have used better search terms than me. I been researching on Google for about two weeks. Thanks.
  7. serverguy78

    Event Viewer question

    Hello, I was wondering if it is possible to change this code so that it checks Overwrite events as needed instead of Overwrite events older than 14 days? strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate,(Security)}!\\" & _ strComputer &...
  8. serverguy78

    Event log script issue

    That did it. Thanks
  9. serverguy78

    Event log script issue

    I removed the two single quotes. Now this code error comes up Line 13 Char 4 Error Object doesn't support this property or method: 'wmiSWbemObject.Put' Code: 800A01B6 strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate,(Security)}!\\" & _...
  10. serverguy78

    Event log script issue

    Hello guitarzan I recieved this error when i run your script. Windows Script Host Line: 9 Char: 4 Error: 0x80041021 Code 80041021
  11. serverguy78

    Event log script issue

    Ok I did that. Now i get this error: Line 2 Char 44 Error: syntax error Code: 800A03EA
  12. serverguy78

    Event log script issue

    Line 2 Char 42 Error Expected ')' Code 800A03EE
  13. serverguy78

    Event log script issue

    Hello, I'm trying create an event log script that will let me set the maximum log size. Here is what I have so far and I'm getting errors when I try to run it. Please assist strComputer = "." Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate,(Security)}!\\" &...
  14. serverguy78

    Run wscript echo after software install

    Hello, I have any install script that I want to show a complete textbox after the software installs. My problem is that the textbox is coming up while the software is still installing. Can someone help me? Here is my code: Dim WshShell Set WshShell = CreateObject("Wscript.Shell") On Error...

Part and Inventory Search

Back
Top