Power Query – Week start and end dates in same column

Someone asked me the other day below thing: “On the same column I want a Range of dates not Duration between two dates So I have a Creation date and fulfillment date I need to come up with a column of weekly Range like for example 10/21 – 10/27 10/28 – 11/01 11/02 – 11/09…

November 2, 2019 · 3 min · 443 words · Vitalie Ciobanu

Uninstall KB 2823324 using ConfigMgr

Create a CMD file with the following content @echo off :: – – – – – Check if KB is installed – – – – – – – – systeminfo | findstr 2823324 :: – – – – – If not installed (1), exit – – – – – – – IF %errorlevel% EQU 1…

April 16, 2013 · 1 min · 154 words · Vitalie Ciobanu

Find computer name for a remote computer using PSExec

Let’s say you know the IP address of a computer but you don’t know the hostname. Seems to be an easy task with ping –a, if you have a working DNS If not, you can try the following approach: Create a cmd file on client’s computer. Say in \IP\C$\Windows\Temp\FindHostname.cmd Edit FindHostname.cmd. Type in: echo %computername%…

April 15, 2013 · 1 min · 71 words · Vitalie Ciobanu