Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am sharing some batch files among the computers within my workgroup on my

wireless network and am allowing them to be able to edit them via "users can edit these

files" option under properties. I need to find a way to allow them to use it but not edit

it without using the "users can edit these files" {OFF} option.

The reason for this is i need them to be able to move files without actually modifying

the files via {right click} --> [select option] --> (edit).

Things to do:

1) Detect modifications to batch with detector batch file.
2) Run detector batch file in background without "shortcut method".
3) Del modified batch.
4) Copy original batch in modified's place.
5) Run detector batch each time that i open the containment unit.

Here's what i have so far:

.

DETECTOR:

@echo off
title DETECTOR BATCH
cls
for f "delims= " %%a in (shared batch.bat) do (

set share=%%a

)

for f "delims= " %%b in (true batch.bat) do (

set true=%%b

)
if %true%==%share% exit
if not %true%==%share% goto :CORRUPT

:CORRUPT

cls
del shared batch.bat
cd C:\batches
copy true batch.bat C:\shared batches
ren true batch.bat shared batch.bat
exit

:ORIGINAL

:OS
@echo off
color a
title shared batch
cls
echo.
echo.
echo                    Select Your Operating System.
echo.
echo.
echo                   1)Windows Xp  2)Windows Vista
echo.
echo                   3)Windows 7   4)Windows 8
echo.
echo.
echo.
set OST=
set /p OST=Operating System:
if %OST%==1 type winx.txt & echo. & pause & exit
if %OST%==2 type winv.txt & echo. & pause & exit
if %OST%==3 type win7.txt & echo. & pause & exit
if %OST%==4 type win8.txt & echo. & pause & exit
echo.
cls
color c
echo.
echo.
echo                   INVALID OPTION.
echo.
ping localhost -n 3 >nul
goto :OS

:MODIFIED

:OS
@echo off
color a
title shared batch
cls
echo.
echo.
echo                    Select Your Operating System.
echo.
echo.
echo                   1)Windows Xp  2)Windows Vista
echo.
echo                   3)Windows 7   4)Windows 8
echo.
echo.
echo.
set OST=
set /p OST=Operating System:
if %OST%==1 type winx.txt & echo. & pause & start winx.exe
if %OST%==2 type winv.txt & echo. & pause & start winv.exe
if %OST%==3 type win7.txt & echo. & pause & start win7.exe
if %OST%==4 type win8.txt & echo. & pause & start win8.exe
echo.
cls
color c
echo.
echo.
echo                   INVALID OPTION.
echo.
ping localhost -n 3 >nul
goto :OS
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.