server 2019 安裝 termainl service 後注意事項及問題
Server2019已啟用遠端桌面授權,可用授權數0【解決方法】 未設定遠端桌面工作階段主機伺服器的授權模式 RDS 登入後無法執行預設開啟程式 mstsc /admin 管理者模式登入 mstsc 使用者模式登入
修改 mysql 資料庫預設存放路徑
sudo service mysql stop sudo cp -R /var/lib/mysql /新的路径 (通常是/etc/mysql/my.cnf或/etc/mysql/mysql.conf.d/mysqld.cnf) sudo nano /etc/mysql/my.cnf sudo service mysql start datadir
查詢 MS SQL Server 的SQL指令log(2016以上)
語法 SELECT st.text as sql_statement, qs.creation_time as plan_last_compiled, qs.last_execution_time as plan_last_executed, qs.execution_count as plan_executed_count, qp.query_plan FROM sys.dm_exec_query_stats
開放 PowerShell ISE 測試權限
指令 Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
使用 PoweShell 連接 MSSQL
安裝 SqlServer 模組 Install-Module -Name SqlServer 程式碼 Import-Module -Name SqlServer $serverName = "your_server_name" $databaseName = "your_database_name"
在 Windows PowerShell 編寫API , 提供程式自動發送 Line Notify
新增 line.ps1 param ( [Parameter(Mandatory=$true)] [string]$Message, [Parameter(Mandatory=$true)] [string]$StickerPackageId, [Parameter(Mandatory=$true)] [string]$StickerId, [Parameter(Mandatory=$true)] [string]$ImageThumbnail, [Parameter(Mandatory=$true)] [string]$ImageFullsize ) $Headers