powershell을 Background로 실행하기


참고: http://windowsitpro.com/powershell/powershell-background-jobs

Start-Job {Param($log,$newest) Get-EventLog $log -Newest $newest} -ArgumentList “system”,25

Start-Job -FilePath C:\scripts\Send-UptimeMail.ps1 -ArgumentList (Get-Credential jhicks@jdhitsolutions.com)

Get-Job 3 -IncludeChildJob

PC 및 스마트폰에서 인터넷에 접속할 때 자신의 IP Address 숨기는 방법


참고: https://codingsec.net/2016/05/hide-ip-address-safe-online/

<자신의 IP Address를 숨기는 이유>
For Hiding Geographical Location.
To Prevent Web Tracking.
To Avoid leaving a Digital Footprint.
To Bypass Blocked Sites on their IP Address.(중국에서 Facebook에 접속하기)

스마트폰에서는 VPN Express를 설치하면 하루 300MB 네트워크 용량까지는 무료로 사용할 수 있다.

 

최신 Windows 2016에서 Linux Container가 실행된다


Windows Server 2016의 1709버전이 2017.10.15에 출시되었다.
이 버전의 주요 기능은 아래 동영상이나 링크 정보를 보면 된다.
무엇보다도 Tomcat과 같은 Linux Container를 1709버전에서도 실행된다는 것이다.
이제는 진일보하게 Windows가 Open Source와 되어 가고 있다는 것을 알 수 있다.
Linux에서 만든 docker image를 Windows Server 2016의 최신 OS에서 실행이 가능한 것을 아래 동영상에서 확인해 본다.(Windows Container 기능이 많이 향상되었네)
Windows  Server 2016에서 다음과 같이 tomcat 이미지를 다운로드하여 실행한다
docker run –rm -d -p 88:8080 -m 1gb tomcat

다른 컴퓨터에서 실행된 Tomcat 웹페이지에 액세스한다
http://10.159.22.229:88

다시 nycat이라는 Linux 도커 이미지를 다운로드하여 실행한다
docker run -it nyancat
화면에서 이미지 프로그램이 실행된다


참고 동영상: https://youtu.be/yea9OXRZ8xg

링크: https://blogs.technet.microsoft.com/windowsserver/2017/09/25/faster-releases-for-a-faster-world-first-semi-annual-release-of-windows-server/