Category Archives: #Business

Command line to disable Windows 10 update

Put this in a batch file

rem Take ownership
takeown /f C:\Windows\System32\GWX /r /d y

rem Set Permission
icacls C:\Windows\System32\GWX\* /grant %USERNAME%:F

Rem Kill process
taskkill /f /im gwx.exe
taskkill /f /im GWX.exe

Rem Remove Folder
rd /S /q C:\Windows\System32\GWX

 

Google API Test

function onOpen() {
getTVID();
}

function getTVID() {
var sheet = SpreadsheetApp.getActiveSheet();
sheet.getRange(‘A1:Z100’).clearContent();
var threads = GmailApp.search(‘from:tv@gmail.com “TV on “‘);
for (var i=0; i < threads.length; i++) { var messages = threads[i].getMessages(); for (var j=0; j < messages.length; j++) { if (!messages[j].isUnread()) { continue; } tid=messages[j].getSubject(); pid=messages[j].getSubject(); dte= messages[j].getDate(); tvid=tid.slice(tid.length-9, tid.length); pvid=pid.slice(5, tid.length-12); sheet.appendRow([dte,pvid,tvid]); } } }

Daemon

In multitasking computer operating systems, a daemon (/ˈdiːmən/ or /ˈdeɪmən/)[1] is a computer program that runs as a background process, rather than being under the direct control of an interactive user.

Hello Microsoft, welcome to the Laptop race … Microsoft Surface Book

Microsoft just introduced its first-ever laptop on Tuesday, called Surface Book.

Weighing in at a little over three pounds, Surface Book is the fastest 13-inch laptop ever created, and it’s two times faster than Apple’s MacBook Pro, according to Microsoft.

We’ve tested the computer for a few minutes at Microsoft’s launch event, and it definitely feels like a strong competitor to Apple’s MacBook Pro.

It will be available October 26 starting at $1,499.

 

[via techinsider]