reg.exe ADD "\\%compname%\HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
Вместо %compname% - имя компа.
reg.exe ADD "\\%compname%\HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
#!/bin/bash Mes=/tmp/.message_for_netsend if [ -z "$2" ]; then echo "Usage: $0 <destination> <message>" echo "Message must be in quotes" else echo $2 > $Mes /usr/bin/smbclient -M $1 < $Mes && rm -f $Mes fi
smbclient -M pechatnik
smbclient -M pechatnik < message.txt
#!/bin/bash
/usr/bin/curlftpfs ftp://user:password@ftp.server.ru/../path/EKT /net/ftp/
for i in /net/domain/DDD/OLGA/Publication/*tif; do mv -v $i $i.bak;done
find /net/ftp/ -type f -atime -3 -exec unzip '{}' -d /net/domain/DDD/OLGA/Publication/ \;
fusermount -u /net/ftp
rasdial unlim login password
:loop
ping -n 10 127.0.0.1
ipconfig| grep "Wireless"
if ERRORLEVEL 1 netsh interface set interface "Wireless Network Connection 2" ENABLED
goto:loop
tail -f log|grep string|awk '{print $2}'Но не вышло, т.к. tail -f (вероятно) имеет собственный буфер, который не имеет ничего общего с STDOUT, поэтому к awk ничего не доходит.
tail -f log | awk '{if ($1 == "Rough") print $5 | "tee mySecondFile.txt"}'