try to enable SMB 1 on Windows 10 (has been disabled automatically for security reasons)
Type PowerShell in Search bar > Right click > Run as administrator > Type:
Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol + ENTER
try to enable SMB 1 on Windows 10 (has been disabled automatically for security reasons)
Type PowerShell in Search bar > Right click > Run as administrator > Type:
Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol + ENTER
In my previous article “How to use Group Policy to make USB drives read only on Windows XP” I showed you you could configure Windows XP to prevent users from writing to USB block level devices. However for some organisations just making drives read only is not enough I have heard stories of them having to resort to using hot glue guns to prevent people using USB storage devices.
Update: I just found this article explains how use native Group Policy to disable you USB drives. Microsoft Support: HOWTO: Use Group Policy to disable USB, CD-ROM, Floppy Disk and LS-120 drivers
1. Forward all calls (โอนสายเรียกเข้าทุกสาย )
– โอนสาย กด **21* หมายเลขที่ต้องการโอนสาย # กดปุ่มโทรออก
– ยกเลิก กด ##21# กดปุ่มโทรออก
2.Forward when not answer (โอนสายเรียกเข้าทุกสายที่ไม่ได้รับ )
– โอนสาย กด **61* หมายเลขที่ต้องการโอนสาย # กดปุ่มโทรออก
– ยกเลิก กด ##61# กดปุ่มโทรออก
3.Forward when not reachable (โอนสายเรียกเข้าทุกสาย ในกรณีที่ปิดเครื่อง หรืออยู่นอกพื้นที่ให้บริการ )
– โอนสาย กด **62* หมายเลขที่ต้องการโอนสาย # กดปุ่มโทรออก
– ยกเลิก กด ##62# กดปุ่มโทรออก
4.Forward when busy (โอนสายเรียกเข้าทุกสาย ในกรณีที่สายไม่ว่าง )
-โอนสาย กด **67* หมายเลขที่ต้องการโอนสาย # กดปุ่มโทรออก
– ยกเลิก กด ##67# กดปุ่มโทรออก
สามารถยกเลิกการตั้งโอนสายทุกกรณีโดยกด ##002# โทรออก ฟรี
Username: EAV-0162877085
Password: m5frr2emm2
License Key: cndu-w337-wafe-euu9-f55m
Expiration: 13/03/2019
Username: EAV-0170145291
Password: k557f8pffj
License Key: cndu-w33b-caj8-8u77-cjup
Expiration: 21/06/2019
Username: EAV-0215523156
Password: 2efkt8exh9
License Key: BAXC-XNHX-G9KK-4DA8-G622
Expiration: 20/12/2018
Username: EAV-0226549625
Password: 4m4t4vxvar
License Key: JN92-XKJP-MM7C-2RD2-HUBF
Expiration: 24/05/2019
Username: EAV-0239651688
Password: ermp7fv9fr
License Key: DEAS-W33H-CAWE-EV3U-VW5W
Expiration: 19/01/2019
Username: EAV-0239651695
Password: de42rru4aa
License Key: DEAS-W33H-CSWW-W39V-PE3N
Expiration: 19/01/2019
OPTION ONE
To Download a “This PC” Shortcut
2. Save the .zip file to your desktop.
3. Unblock the .zip file..
4. Open the .zip file, and extract (drag and drop) the shortcut to your desktop.
5. You can Pin to Taskbar, Pin to Start, add to All apps, add to Quick Launch, assign a keyboard shortcut to, or move this shortcut to where you like for easy use.
6. When finished, you can delete the downloaded .zip file if you like.
Custom Header is a theme feature introduced with Version 2.1. Custom header is an image that is chosen as the representative image in the theme top header section.
See also Appearance Header Screen.
Does this look familiar?
If the Microsoft Compatibility Telemetry process has recently started causing very high disk usage on your Windows 10 system, don’t worry.
We have a quick fix for you.
Method 1: Using Group Policy Editor
Method 2: Using Registry Editor
Method 3: Updating device drivers
Security in WordPress is taken very seriously, but as with any other system there are potential security issues that may arise if some basic security precautions aren’t taken. This article will introduce you to basic security concepts and serve as an introductory guide to making your WordPress website more secure.
This article is not the ultimate quick fix to your security concerns.
VFP supports arithmetic on datetime values. When you substract one datetime from another you get the elapsed time in SECONDS.
ie:
datetime(2008,1,1,15,0,0) – datetime(2008,1,1,14,0,0) is 3600 SECONDS.
However be carefull with datetime arithmetic and round the value to 0:
lnSeconds = round(m.ltEnd – m.ltStart, 0)
And here is a little trick for formatting the result as time (in 24hr range):
? TRANSFORM(RIGHT(TTOC(CTOT(‘0′)+(m.ltEnd – m.ltStart),1),6),’@R 99:99:99’)