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 Shaun E 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: 1971240z
  • Content: Threads
  • Order by date
  1. 1971240z

    ask for a login pasword and domain name VBscript

    I would like to create a script that would prompt for a login name password and domain name. Then it would take the variables and use the net use command to map a drive to a server that was specified in the script. What I have tried is the following: Option Explicit Dim name,WshShell,username...
  2. 1971240z

    need to run a command from a vb script

    I need to run a net use command from a vb script. The script will ask for a users login name as input. Then the user name will be put in to a net use command that will prompt for the users password. This is what I have written. Option Explicit Dim name, username Wscript.StdOut.WriteLine...
  3. 1971240z

    need to run a command from a vb script

    I need to run a net use command from a vb script. The script will ask for a users login name as input. Then the user name will be put in to a net use command that will prompt for the users password. This is what I have written. Option Explicit Dim name, username Wscript.StdOut.WriteLine...
  4. 1971240z

    Need to write a find and replace script

    I need to fine a string of letters and numbers like HB33440011 in a file and replace it with a new number like HC446688900. Does any one know how to right a script that would find and replace the letters/numbers? Regards,
  5. 1971240z

    How can I ufsrestore from a remote servers tape drive?

    Does any one know how to do a ufsrestore from a remote server? What I would like to do is restore a volume on server1 from a tape drive on server2. Regards,
  6. 1971240z

    Setting up dual nics on Solaris 8 and have them use separate subnet an

    Does anyone know how to setup dual nics on Solaris? What I would like to do is have two nics running on two separate subnets and set them so that they communicate on separate gateways. Meaning if one nic is on a 192.12.234.0 with a name of test1 and a gateway of 192.12.234.1. The other nic...
  7. 1971240z

    How can I ufsdump to a remote servers tape drive?

    I would like to do a ufsdump from one solaris box to another solaris box that has a tape drive. Does anyone know how I can attach to the remote systems tape drive in order to do the dump? Regards,
  8. 1971240z

    Using ls -lR in a while loop

    I need to write a script that will take a list on login information and grep it to get the users home dir. The does a ls -lR looping through the home dirs. This is what I have written. #! /bin/ksh while read line do ls -lR `egrep "$line" locked_accounts.txt |awk -F: '{print $6}'`...
  9. 1971240z

    Running shell script to start sqlplus and run a qls script

    Hi, I am trying to write a unix shell script that starts sqlplus and then run a sql script. What I have tryed is: # # sqlplus / @ file.sql # # When I run the script it starts sqlplus, but is does not run the next line till I exit sqlplus. Can anyone help me out with this? Regards,
  10. 1971240z

    overwritting a old tape on Netbackup 4.5

    Dose anyone know how to overwrite a tape when it has old information on it? I would like to reuse my old tapes, but Netbakup tells me that there is Netbackup data on them. Regards,
  11. 1971240z

    exclusion list on unix netbackup 4.5

    How can I define a file exclusion list on my Solaris 8 and 9 clients for files that I do not wish to be backed up? Regards,
  12. 1971240z

    Does anyone know how to make a solaris boot cdrom?

    What I am looking to do is make a boot CDROM for Solaris 6, 7, or 8. This would be just like the O/S boot CDROM. You know how you can “boot cdrom –s” and boot a scaled down version of Solaris. I would like to do the same thing, but I would like to have networking and one software client...
  13. 1971240z

    solaris boot cdrom

    What I am looking to do is make a boot CDROM or Solaris 6, 7, or 8. This would be just like the O/S boot CDROM. You know how you can “boot cdrom –s” and boot a scaled down version of Solaris. I would like to do the same thing, but I would like to have networking and one software client setup...
  14. 1971240z

    how can I delete files and directories by using a source file?

    I need to delete files and directories by using a source file. I can not use the rm –r command to remove the files and directories. The file that I have is in reverse order. How can I use this file to delete all the files and directories? Example input file. /export/home/user1/test6...
  15. 1971240z

    I need to find all files and sub dir and file and list them to a file

    can anyone help me? I need a script that can read a file that has a list of dirs. Then list out all the files, sub dirs, and files in the sub dirs to a new file. Does anyone know how to do this? example input file /opt/netscape /opt/program1 example output file /opt/netscape...

Part and Inventory Search

Back
Top