Jump to content

er22

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by er22

  1. We are seeking a highly skilled and motivated Senior IT Operations Technician to join our IT Services team. Basic salary range: £36,566 – £38,092 per annum – this is the pro‑rated salary based on a 40‑hour working week, year round position We are seeking a highly skilled and motivated Senior IT Operations Technician to join our IT Services team. This is a senior technical role focused on ensuring the reliability, security and performance of the School’s IT services, with specialist responsibility for cloud platforms, endpoint management and cyber resilience. You will play a key part in the day-to-day running of our IT environment—overseeing the health of our Intune managed 1:1 device programme, delivering advanced 2nd and 3rd line support, and ensuring helpdesk operations run smoothly and efficiently. As a senior member of the team, you will act as a vital bridge between user-facing support and core technical infrastructure, helping drive our transition from a reactive support model to a proactive, service-led approach. Apply https://www.stjohnsleatherhead.co.uk/vacancies/senior-it-operations-technician/
  2. its working FOR /F %%D in (hostnames.txt) do Xcopy /E /Y "c:\files\*" "\\%%D\c$\Windows\System32\oobe\"
  3. no i dont i would like to write a script that way i can use it for other things
  4. i was trying to use cmd instead getting the names from a txt file for the machines, then copy the folder to c:\Windows\System32\oobe somethng like this ( its wrong at the moment) FOR /F %%D in (hostnames.txt) do Xcopy /E / Y "c:\Info*.*" "c$\Windows\System32\oobe\" \\%%D i know you can to it like this Xcopy /E /Y "c:\MyProject\Sample*.*" "\Computer1\Sample\" Xcopy /E /Y "c:\MyProject\Sample*.*" "\Computer2\Sample\" Xcopy /E /Y "c:\MyProject\Sample*.*" "\Computer3\Sample\" Xcopy /E /Y "c:\MyProject\Sample*.*" "\Computer4\Sample\" but that will take to long, need it to get the names from a text file.
  5. Need some help writing a script to copy a folder (with sub contents) to multiple remote machines. i have done it for files but how do you to it for folders help!! @Rem simple copy script for Windows Command Interpreter (cmd.exe) @echo Read in each hostname entry in the file hostnames.txt amd copy the local file to the c$ of each hostname FOR /F %%i in (hostnames.txt) do copy name.bmp \\%%i\"c$\Program Files\"
×
×
  • Create New...