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

  1. celia1

    how create a listbox in vbscript

    Thanks a lot. Just a precision, i see in different web sites, listbox.additem. What is it?
  2. celia1

    how create a listbox in vbscript

    I want to create a list box
  3. celia1

    Open an bat file

    thank you for your reactivity.
  4. celia1

    Open an bat file

    I write this script : Sub FtpdConfig(ftpdFile, psaIP) Dim fso, ftpdFileOri, fori, fbat Set fso = CreateObject("Scripting.FileSystemObject") ftpdFileOri = ftpdFile&".ori" If (fso.FileExists(ftpdFileOri))=False Then fso.CopyFile ftpdFile, ftpdFileOri End If Set fori =...
  5. celia1

    BrowseForFolder question

    Thanks for your script but it doesn't response exactly to my problem I have : c:\FolderA c:\FolderA\FA c:\FolderA\FA\bin c:\FolderA\FA\conf c:\FolderA\FB c:\FolderA\FC I want that BrowseForFolder list only c:\FolderA c:\FolderA\FA c:\FolderA\FB c:\FolderA\FC I don't want...
  6. celia1

    BrowseForFolder question

    I use BrowseForFolder to have a list of folders. It's OK. Now i want only the list of folders but i don't want to see their subfolders. How to do ?
  7. celia1

    Open an bat file

    thanks
  8. celia1

    Open an bat file

    Hy, i want to open and write in a bat file in vbs. It is possible?
  9. celia1

    using a parameter of a file.bat in vbscript

    Hy, i have a file.bat which uses parameters like "@set IP_address" and i want to use this value of this parameter in my script.vbs. How to do? Thanks
  10. celia1

    name of the second subfolder

    I try to write the script but i don't know how to do. I have to recuparate the name of one subfolder to change parameters in a file. C:\Folder\subfolder1 C:\Folder\subfolder2 C:\Folder\subfolder3 C:\Folder\subfolder4 I want for example to recuparate the name of "subfolder3" and then recuperate...
  11. celia1

    name of the second subfolder

    Well i have a folder which has 3 subfolders. The result of the script returns the name of the second subfolder.
  12. celia1

    name of the second subfolder

    Hy, I want to obtain the name of the second subfolder. thanks
  13. celia1

    cluster with 3 ip addresses

    Hy, i want to know if it is possible to configure a cluster with a server which has 3 ip addresses in 3 different vlan. Thanks a lot for your responses. Celia
  14. celia1

    problem to install epo 3.01 or 3.5

    I found the solution. I delete any keys in the registry and i can reinstall epo 3.5.
  15. celia1

    problem to install epo 3.01 or 3.5

    Hy, I install microsoft updates on my server ePO before to upgrade the version (3.01 to 3.5). I cannot reboot the server because of the users On the same time, i upgrade epo 3.01 to epo 3.5. The installation was OK . But when i reboot the server to validate this installation and the microsoft...
  16. celia1

    How delete an internet shorcut

    Excuse-me It's my fault. It functions now. Thanks for your help!!!
  17. celia1

    How delete an internet shorcut

    I try with this and the shortcut doesn't delete. Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFile("C:\Documents and Settings\%username%\Application Data\Microsoft\Office\Récents\*.url")
  18. celia1

    How delete an internet shorcut

    Hy, I want delete temporary files in all user profile. I write a scritp which deletes all *.lnk and it is OK Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFile(Documents and Settings\%username%\Application Data\Microsoft\Office\Récents\*.*") but I have internet shorcut in...
  19. celia1

    How to delete Items to My Network Places

    Thanks but i apply your script but in my case it doesn't function because these links are special!!!
  20. celia1

    How to delete Items to My Network Places

    Hy, i want to delete all items in c:\documents and settings\%userprofile\My network places. I tried to do: fso.DeleteFile *.lnk -> no result del *.* -> no result please help me. Thanks

Part and Inventory Search

Back
Top