All posts in Windows
B1: đăng nhập vào server ấn Window + R chọn gpedit.msc tại trang local group policy editor mở: computer configuration -> administrative templates -> window components -> remote desktop services -> remote desktop session host-> licensing B2: edit 2 option như trong ảnh B3: tiếp đến computer configuration -> window . . . Read more
Sorry you have no rights to view this entry!
Nhập vào bằng Powershell $acl = Get-Acl \\fs1\shared\sales $AccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule(“ENTERPRISE\T.Simpson”,”FullControl”,”Allow”) $acl.SetAccessRule($AccessRule) $acl | Set-Acl \\fs1\shared\sales
Tạo file bat với nội dung sau và chạy @echo off cls :start echo Running => nhập các lệnh muốn loop vào đây echo Complete ping 127.0.0.1 -n 30 > nul => để pause 30 giây goto start