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 Chriss Miller 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: *

  • Users: Frink
  • Content: Threads
  • Order by date
  1. Frink

    How to set 'Delete history entries older than' config setting in SNMPc Workgroup Edition 7.1.1

    I'm trying to install SNMPc Workgroup Edition version 7.1.1, and need to preset the 'Delete History Entries Older Than X Days' but I can only seem to do it manually, through the GUI. Does anyone know how to script it? I'm thinking there might be a setting I could add to the snmpc.ini file? -Frink
  2. Frink

    Launch mib table from SNMPc icon

    I'm bit of a newbie with SNMPc, but how can I get a mib table displayed when I double-click an icon in SNMPc Management Console? For example, all the interfaces on a router. Presumably I have to add a command in the third column of the autoico.txt file for the router, but what is the command?
  3. Frink

    Free ESXi 5 Backup Solution

    I have several physical servers running ESXi 5 and would like to back up the VMs that they host. Does anyone know a simple free backup solution to perform the following: Scheduled backups of running VMs to a Windows file system folder on a physical file server, and recovery Recovery of...
  4. Frink

    Export/Import Active Directory Users, Groups and Group Membership

    Hallo, I want to copy my Active Directory Users, Groups and Group Memberships from one DC to another using csvde, where the machines are identical except for the only the name of the Domain and Machine. Note that each server is a DC and itself is the only member of the domain. The command I am...
  5. Frink

    Can I log in to a VM from the host machine using ESXi

    Hallo, I am wanting to host several virtual web servers on a single physical server, but I do not have access to any physical clients. I want to be able to log on to any of my virtual servers from the physical server. Is this possible? If so, what configuration/products do I need? I'm not...
  6. Frink

    Rename a cloned W2K3 Server

    I have made a clone of a server and wish to rename it (and change its IP Address) so I can have both on my network. The machine is an AD box with it's own domain. Any idea how best to go about the renaming? There is no DNS server in use as every machine has a manually assigned fixed IP Address...
  7. Frink

    Standalone Updates

    Hallo, I need to update some servers from a DVD. I have internet access, but the servers themselves have no network, usb or internet connection. I can use Microsoft Baseline Security Analyser to determine what patches I need, but is there any tool where I can somehow get all these on a DVD...
  8. Frink

    Output constant text in Format-Table column

    Hallo, I want to output the same text in every column in a format table, i.e. Get-EventLog -LogName System -Newest 3 | Format-Table -Property @{Label="MyLabel";Expression="MyMsg"}, Message -Autosize gives MyLabel Message...
  9. Frink

    Visual Studio: High Level Design?

    Hallo, I'm an experienced (old-school) programmer, trying to get to grips with Visual Studio 8 (or 10) I want to write a VB program which comprises 3 elements; a Service to enter data into a Database, which can then be viewed in a Windows forms App. Ideally, could I have one App with a local...
  10. Frink

    Visual Studio: High Level Design?

    Hallo, I'm an experienced (old-school) programmer, trying to get to grips with Visual Studio 8 (or 10) I want to write a VB program which comprises 3 elements; a Service to enter data into a Database, which can then be viewed in a Windows forms App. Ideally, could I have one App with a local...
  11. Frink

    Using a variable in a function

    Hallo, Why can't a function change a variable defined in the calling script? $scriptvar=2 function scopetest { "scopetest before $scriptvar" $scriptvar=$scriptvar+1 "scopetest after $scriptvar" } "Before $scriptvar" scopetest "After $scriptvar" Gives: Before 2 scopetest before 2...
  12. Frink

    Script to Encrypt Zip files

    Hallo, Not sure if this is the correct forum, but I have a script which runs as a scheduled task and zips up files (using WinZip). I now need to encrypt the zip files. This seems quite straightforward, using the -s and -ycAES256 command line options, but how can I automatically enter a password...
  13. Frink

    Design Diagrams Best Practice

    Hallo, I have inherited a set of BizTalk applications but there is no design documentation for them. Is there a recognised way of documenting a BizTalk application diagramatically? I'm really looking for something showing the logical BizTalk artifacts (such as ReceivePorts/Locations etc.) and...
  14. Frink

    Backup To Removable USB Drives question

    Hallo, I'd like to set up the following Backup system using Backup Exec 12. I have 7 Removable USB Drives. I'd like to set up a daily backup, but each day I put in a different drive. I also want this to be achieved without logging into the machine. I figure that if I set a start time and max...
  15. Frink

    How to determine path of script called via ExecuteGlobal

    Hallo, I have a script which I call from a parent script using ExecuteGlobal. Does anyone know how to get my child script to know which folder it is in as ScriptFullName returns the path to the parent script. - Frink
  16. Frink

    VBS Include

    Hallo, Being able to 'Include' a file in VBS is useful, to allow code re-use etc. I have read around and come up with the following as about the neatest way to do it: ExecuteGlobal CreateObject("Scripting.FileSystemObject").OpenTextFile("C:\My Library.vbs",1).ReadAll I'm not overly familiar...
  17. Frink

    Recommend book for VBS on W2k3

    Hallo, I need to learn VBS on Windows Server 2003, to script installations, updates, AD, GP stuff etc. Does anyone have any book recommendations? I've seen Advanced VBScript for Microsoft® Windows® Administrators which looks like it might be good. Has anyone got/seen this book? What about a...
  18. Frink

    Command Line Parameters for configuration.exe

    Hallo, Can anyone tell me where I can find out what the command line parameters are for the biztalk Configuration.exe? TIA, - Frink
  19. Frink

    Automated Install - no 'Press ENTER'

    Hallo, How do I perform a completely non-interactive install of the Oracle 10g Client? I am using -silent and -responsefile parameters but I still get asked to press enter at the end. Does anyone know any way of getting round this? - Frink
  20. Frink

    Formatting DateTime (Format$(Now,"dd/mm/yyyy hh:mm:ss")

    Hallo, How do I output the current Date and Time formatted how I want? In VBA I'd use the Format$ function defined in the subject? The code I have so far is: $datDateTime=Get-Date $strDateTime="" $strDateTime=$strDateTime$datDateTime.Day $strDateTime=$strDateTime"/"$datDateTime.Month...

Part and Inventory Search

Back
Top