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 Wanet Telecoms Ltd 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: dukkse
  • Content: Threads
  • Order by date
  1. dukkse

    Admsnap activate -o

    Hey!! I have a scenario where I use snapshots and clones for backups. I am running out of drive letters on the backup server and was trying to work with the admsnap -o option and mount the LUN as a volume (using mountvol) but I have not gotten this to work. Anyone that has any experience with...
  2. dukkse

    IF.. OR

    Hey! I have this code, and it gives me an error. Basicly, I am scanning our AD for servers whoose name starts with either RET or ITU. But I an error on the IF row. Here is the script servername = "RET100" If ucase(Left(servername,3)) = "ITU" Or "RET" Then MsgBox "Good" And this is the error...
  3. dukkse

    Connect to 2 different networkd with 2 nics

    Hey!! I have at my office my normal LAN with proxy server and everything. But we now also have a wireless broadband connection directly to the internet. How can I setup my IE and Firefox so when I use one of the browser it goes on my LAN link, and when I use the other it goes over the broadband...
  4. dukkse

    Fracture a clone to a specific driveletter

    Hey!! We have a backup server connected to our SAN, that owns a couple of clone LUNs. Theese LUNs gets synched every night during afterhours, and then fractured so they can be backed up. Only bad thing is that sometimes they do not keep the same driveletter as they normally have, which causes...
  5. dukkse

    Outlook Rules!!

    Hey!! I get this error message when I try to upload a rule to the exchange server: "One or more rules could not be uploaded to exchange server and have been deactivated. This could be because some of the parameters are not supported or there is insufficient space to srtore all of your rules."...
  6. dukkse

    Access Database Query

    I have a simple question, I should now it, but somehow this is greyed out. .Kinda embarrassad about it but here goes.. I have the following script, and I just want to list all items in the "servers" list. Const adOpenStatic = 3 Const adLockOptimistic = 3 Set wshshell =...
  7. dukkse

    List users from a group

    Hey!! I have an OU structure with 7 top OU:s. Each one of them have several subOU:s in several levels (we are a global company). In the end OU (bottom one) there is a bunch of groups and a common thing for the group names are that they contain a common lettercomination together with the group...
  8. dukkse

    Search for Users in OU and subous

    Hey! I have a script that lists all users in our AD and looks for who has a homedrive on a specific server and then lists it. The problem is that we have 5 major OU:s and I don't want to search more than one of them. How can I make this work better and quicker since now it takes about 1 hour...
  9. dukkse

    DELL 2600s and TIMESYNC

    Hey!! We have several servers, all DELL 2600:s on which ever now and then the time stops. The clock stands still, and since we are running kerberos, after 5 minutes, all negotiation stops and we can't reach the server through RDP or Dameware. In the event log we get error 537 all over, with the...
  10. dukkse

    Get a script to run on webpage

    Hey!! I have this VB Script that works perfect as a VBscript. Now, I want this to be as an webpage so when you go to this page, it runs the script and gives the result (all servers in a specific ou in AD). I guess I have to make an ASP of this, and it's more or less just the "echo":ing that...
  11. dukkse

    ADO connection for NT4

    Hey!! I have a script that gets info and puts into an accessdatabase through VB script. This works fine on win2000 and w2003 machines, but not on NT4:s. The string I use to connect (and where I get the error message) looks like: Set objConnection = CreateObject("ADODB.Connection") Set...
  12. dukkse

    WMI for NT4

    Hey!! Anybody know if there exists a WMI for NT4 or something similar, so you can get computer information from NT4:s as you can against W2000 and W2003??? /D
  13. dukkse

    Get Unknown RegKeys 2:nd level

    Hey!! I am trying to get information from the registry, but the problem is that the key I am looking for is 2 levels deep of random named keys, so I need to do a "For each subkey " and inside that For, another "For each subkey" before I den can read out the description. Thing is, I can get the...
  14. dukkse

    Create MacShare??

    Hey! Easy question. How do a create a Mac share on a Windwos 2003 server???? /Daniel
  15. dukkse

    Locate a certain letter in a name

    Hey!! We have a client naming standard that ends with number, ex. ws0004, ws0125 and so on. It want to determine what the fourth last number is (always the fourth last number) to see if it is a client with a number higher that 1000. How do I easiest get this info??? I need to use it in a IF...
  16. dukkse

    Remote Printerinfo

    Hey!! I have this script, and it's collecting printer info from servers out in our network and puts it in a textfile. The funny thing is that it works sometimes, but not all the time. It gets stuck on the GetObject(objServer).Instances The servers I want to collect data from is NT4 and NT4...
  17. dukkse

    Missing CDO???

    Hey!! I have a script that reads all lines from a textfile into a mail and sends it. This worked fine as a script on my Win2000 Server, but then we upgraded, and now it doesn't work. Is this something with CDO not installed, and in that case, can you install it?? Below are my mailcode: set...
  18. dukkse

    Logfile

    Hey!! I have a script that deletes the default profile on a terminal server and replaces it with a new one. And then changes permissions. It looks like this: Dim fso, wshshell, targetdir, sourcedir, cmdCacls, server, txtServer const tsServersFile =...
  19. dukkse

    DOS commando put to textfile

    Hey!! I have a script (bat-file) to gather info about servers information, and I want to convert it to vbs. everything works fine and it does what it should if I write like this: shell.run "srvinfo -s \\" & Server But, If I want to save the outcoming info it stops working. This is...

Part and Inventory Search

Back
Top