發表文章

目前顯示的是 3月, 2026的文章

Power Automate - Send an email notification when a SharePoint list item or file is approved (Support multiple approvers)

圖片
Overall First, you need to enable "Approvals" in your SharePoint. Next, click "Add Column" to configure the new columns to show on your site. Enable Approval status, Approvers, Responses, and Approval Creator. Power Automate Flows: 1. SharePoint::When an item or a file is modified     - Site Address: select your site address (What is your folder location?)     - List or Library Name: (Option, if your site has a library or another tag) 2. Variable::Initialize variable  The variable is only for debugging purposes and allows you to check the output; you can skip it. -Name: ApproversEmails -Type: Array -Value: 3. Control::Apply to each (If Power Automate automatically produces some additional information for each block, you can remove it directly.) -Name: For each  -Select an output from previous steps: "Approvers" of "SharePoint::When an item or a file is modified" Get folder metadata can skip. 4. SharePoint::Get file metadata     -Site Address: sam...

OpenClaw安裝 [AWS]

圖片
🚀 OpenClaw 安裝指南 - AWS EC2 💡 快速安裝提示: 在最新版的 OpenClaw 官網中,使用以下指令已經可以自動安裝 Node.js: curl -fsSL https://openclaw.ai/install.sh | bash 你也可以跟隨以下步驟了解一下套件和原理。 📋 準備工作 在 Linux VM 上準備 Node.js, brew 和 git 一個 Amazon Linux EC2 instance 🔧 安裝步驟詳解 1 安裝 Git OpenClaw 需要 Node.js,我們需要用到 brew 去安裝,而安裝 brew 又需要先安裝 git。 Brew 和 yum 都是一些軟件工具包,協助管理和安裝 linux 的工作環境,有興趣自己可以去了解下。 所以我們需要先在 VM 上安裝 git, git 傳送門 📦 安裝指令 sudo yum install git-all 2 安裝 Homebrew 安裝完成後,安裝 Brew: curl -o- https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh | bash ⚠️ 重要提醒: 安裝成功後,別忘了看這段文字,它需要我們自行設定環境變數 (PATH),否則輸入 brew 時,cmd 會無法辨識 "brew" 指令。 🔧 設定環境變數 echo '' >> /home/ssm-user/.bashrc echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"' >> /home/ssm-user/.bashrc eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)" 設定完成後,試著輸入 brew ,如果不是跳出 command not f...