Windows

Hướng dẫn Enable / Disable Multiple RDP Sessions trên Windows 2012

Enable Multiple RDP Sessions Đăng nhập vào Remote Desktop. Ần Windows + R và ghi gpedit.msc sau đó mở lên Đi đến Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Connections. Set Restrict Remote Desktop Services user to a single Remote Desktop Services session thành Disabled. Double click Limit number of connections và set…

Get server_id in MYSQL

Thực thi query sau trong mysql mysql> SHOW VARIABLES LIKE ‘server_id’; +—————+——-+ | Variable_name | Value | +—————+——-+ | server_id | 1 | +—————+——-+ 1 row in set (0.01 sec) Chúc các bạn thành công!

Fix lỗi ADODB.Recordset error ‘800a0e7a’

Nếu mã nguồn của bạn là asp classic Khi chạy website hiển thị thông báo lỗi sau ADODB.Connection error ‘800a0e7a’ Provider cannot be found. It may not be properly installed Có thể server bạn đang thiếu thư viện Microsoft Access Database Engine 2010 Redistributable Download và setup tại link https://www.microsoft.com/en-us/download/details.aspx?id=13255 Trên đây là hướng dẫn Fix lỗi…

Check thông tin RAM trên Windows

Có nhiều cách để xem thông tin RAM trên server Windows như sử dụng phần mềm (CPU-Z) chẳng hạn. Tuy nhiên Windows cung cấp command có sẵn để khai thác thông tin này Sử dụng wmic để xem thông tin Cú pháp như sau: C:\Users\Administrator>wmic MemoryChip get BankLabel, Capacity, MemoryType, TypeDetail, Speed BankLabel Capacity MemoryType Speed TypeDetail…

Câu lệnh repair database MSSQL

Bạn đã gặp trường hợp data MSSQL sau khi backup mà không thể restore lại được? Hãy thử repair data trước khi backup. Câu lệnh như sau: ALTER DATABASE DatabaseName SET SINGLE_USER DBCC CHECKDB (‘DatabaseName’, REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS ALTER DATABASE DatabaseName SET MULTI_USER GO Trong đó: DatabaseName chính là data bạn đang cần thao tác. Chúc bạn thành công.

Batch script đồng bộ folder trên windows

Hiện tại, Windows chưa phát triển một công cụ nào thực hiện việc đồng bộ 2 thư mục trên cùng 1 server. Trong khi đó, việc sử dụng các công cụ download trên internet mang lại nhiều rủi ro về bảo mật. Dưới đây là hướng dẫn sử dụng script do đội ngũ CloudCraft phát…

Batch script ghi nội dung vào file text trên windows

Bài viết hướng dẫn Batch script ghi nội dung vào file text trên windows.Tạo file batch có nội dung sau @echo off @echo “noi dung test” > test.txt @echo 123>> test.txt @echo 245.67>> test.txt Để đọc file text trên batch script chúng ta dùng lệnh sau: type test.txt Nội dung sẽ hiển thị như sau…

Batch script backup database mysql trên windows

Hướng dẫn tạo file batch backup mysql trên windows hỗ trợ cho việc đặt lịch backup database hàng ngày Cách bạn tạo file backupmysql.bat theo mẫu bên dưới: @echo off  set dbUser=root  set dbPassword=69mTm1EUd6XL  set backupDir=”Z:\backup\backupmysql\”  set mysqldump=”C:\Program Files\MySQL\MySQL Server 5.7\bin\mysqldump.exe”  set mysqlDataDir=”C:\ProgramData\MySQL\MySQL Server 5.7\Data”  set zip=”C:\Program Files\7-Zip\7z.exe”  :: get date  for /F “tokens=2-4 delims=/…