Unable to copy files from Dell\KACE\kbots_cache\packages\kbots\xxx to the local drive
Hi,
I am trying to deploy a program, which consists of copying several folders to the local C drive and importing some entries in the registry.
The script copies the ZIP file to the KACE folder, and creates the folder at the root of the local C drive after checking if it does not already exists, but the automatically extracted files are not copied to the newly created folder.
Can somebody help? My script is below :
cd\ md "C:\XYZ" cd "C:\Documents and Settings\All Users\Dell\KACE\kbots_cache\packages\kbots\111\XYZ" xcopy "*.*" "C:\XYZ" /e
Many thanks in advance for your time.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
SMal.tmcc
11 years ago
try using
md c:\xyz
xcopy $kace_dependency_dir\*.* c:\xyz /e
Comments: