사내에서 Windows Server를 몇대 운용 중입니다. 가상 서버 4대, WAS, DB, WEB, AD, AD2, 격리 서버 등등.. 업데이트 할때 마다 귀찮아서 여기저기 찾아서 PowerShell 짜집기 했습니다. 사용 모듈 : PSWindowsUpdate How to Use PowerShell to Manage Windows Updates (parallels.com) Windows. Powershell 모듈을 이용하여 Windows Update 하기 (PSWindowsUpdate) :: 페푸리의 Office Server 이야기 (limcm.kr) PSWindowsUpdate 파워쉘 모듈 | Windows 업데이트 관리 윈도우 OS 허브 (woshub.com) Manage Windows Update..
전체 글
개발 관련 자료작업 상태 1. ubuntu 20.04 에 설치 스크립트 Ajenti를 설치했다가 모듈 로드 문제로 삭제하고 Cockpit 으로 변경 (ajenti 설치 - How To Install Ajenti Control Panel on Ubuntu 20.04 | ComputingForGeeks ) (ajenti 삭제 - Uninstall Ajenti · GitHub) 2. nginx 설치 및 certbot (let's encrpty) 설치 3. certbot 으로 인증서 발급 시 AttributeError: 'X509' object has no attribute '_x509' 오류 발생 위의 작업에서 1번 작업에서 pip pyOpenSSL 설치 중에 구버전으로 설치되어 복구 sudo pip install -U p..
하기 구문 추가 ( 파일이 없는 경우 생성 ) "insecure-registries" : ["아이피:포트"] 예제 ) "insecure-registries" : ["192.168.0.123:5000"] * 위치 리눅스 - 링크 참조 https://github.com/Juniper/contrail-docker/wiki/Configure-docker-service-to-use-insecure-registry GitHub - Juniper/contrail-docker Contribute to Juniper/contrail-docker development by creating an account on GitHub. github.com * 위치 Windows - Docker Desktop -> 파일 위치 (탐색..
Powershell 실행시 Repository 및 SSL/TLS 문제 처리 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Get-PSRepository #-> 경고: 패키지 원본을 찾을 수 없습니다. Invoke-WebRequest "https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409" #-> Invoke-WebRequest : 요청이 중단되었습니다. SSL/TLS 보안 채널을 만들 수 없습니다. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #[Net.Serv..
System.InvalidOperationException: 'Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found or is out of date. To generate a developer certificate run 'dotnet dev-certs https'. 1. 인증서 문제 ubuntu - Docker image: Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate coul..
FormBoardStyle이 None 일때 Form을 이동하기 위한 방법입니다. Item_MouseMove 이벤트 함수를 컨트롤의 MouseMove 이벤트에 등록해서 사용하게되며 필요한 하위 컨트롤에 등록해서 함께 사용합니다. public const int WM_NCLBUTTONDOWN = 0xA1; public const int HT_CAPTION = 0x2; [System.Runtime.InteropServices.DllImportAttribute("user32.dll")] public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); [System.Runtime.InteropServices.DllImportAtt..