Skip to main content

Tedshd's Dev note

Category: Windows

SSH 到 Windows Server

最近因為需求要接手 Windows Server 進行維護與開發 因為只有在很久以前幫別人處理 IIS Server 一點經驗 時間也非常久了 所以筆記一下這次的處理過程 這次處理的 server 版本是 Windows Server 2019 # SSH on GCP Compute Engine 如果是建置在 Google Cloud 的 Compute Engine 上的話 就參考文件 Getting started with OpenSSH on Windows Compute Engine instances 就可以了 # 前置作業 之前似乎是採用 remote desktop 的方式 這對習慣命令列操作的人來說會有點不習慣 而且交接程式碼和檔案都放在那台機器上 所以為了之後方便操作, 首先就要安裝 OpenSSH ## 安裝 OpenSSH server 因為 SSH 會有 server 和 client 的部分 因為是需要連進去 Windows Server 所以只需要處理 OpenSSH server 的部分 Refer - 安裝 OpenSSH ...

Windows 8.1 app develop - Introduction

# Windows 8.1 app - Introduction Develop Win 8.1 app with JavaScript. 死心吧, 請準備一台 Windows 8.1 的電腦(一直以來我都以為生為前端攻城獅只要用 Mac 就可以打天下了) 下載 Visual Studio 2013, 要下載 Visual Studio Express 的版本 開始努力地讀文件 Doc ## Notice & Tip 先了解一些限制與規範以免踩雷 Microsoft 提供 WinJS 來協助開發 Windows 8.1 app 無法使用網路的 source 無法使用 remote 的 CSS or JavaScript, 必須全部 download 下來 無法直接使用 iframe package.appxmainifest -> 內容 URI, 把 iframe url 設成例外, 但是該 url 必須用 https 使用 x-ms-webview tag 來代替 iframe, x-ms-webview element | x-ms-webview object ### Handle AJAX 在開發 Windows 8. ...