對!!收到一封這樣的信
用了十幾年雖然google domain被收購但
我一直以為可以在admin.google.com一直操作
收到這封信後我就完全不能管理網域了因為我沒買google workspace
中間想了很多方式也都無解完全聯絡不上google
最後AI提供了一個方式ICANN Lookup先找你目前的代管商
很幸運的我是GoDaddy雖然很多人評價不好,但經過了身分驗證後我可以在上面設定我的網域了
我想應該也很多人會遇到提供分享
PS.看到這信能一切順心嗎
1.ICANN Lookup查看目前代理商
2.聯絡代理商,但不見得都會有結果
簡單使用
筆記筆記
2026年9月4日 星期五
2026年6月22日 星期一
筆記 VS Code npm run 無法載入npm.ps1 檔
出現類似下列錯誤
AI
npm : 因為這個系統上已停用指令碼執行,所以無法載入 C:\Program Files\nodejs\npm.ps1 檔案。如需詳細資訊,請參閱 about_Execution_Policies,網 址為 https:/go.microsoft.com/fwlink/?LinkID=135170。 位於 線路:1 字元:1 + npm run build + ~~~ + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess管理員系統身分執行PowerShell輸入下列
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser參考來源
AI
Windows Chrome停用Windows Hello 驗證
在 Chrome 的設定中停用 Windows Hello 驗證,即可解決自動填入密碼時需輸入 PIN 碼的問題。
1.打開 Google Chrome
2.點擊右上角的「更多」(三個垂直點圖示)
3..依序點選「密碼和自動填入」 →「Google 密碼管理工具」
4.點選左側的「設定」
5.找到「填入密碼時使用 Windows Hello 驗證」選項,將其關閉即可
參考來源
AI
1.打開 Google Chrome
2.點擊右上角的「更多」(三個垂直點圖示)
3..依序點選「密碼和自動填入」 →「Google 密碼管理工具」
4.點選左側的「設定」
5.找到「填入密碼時使用 Windows Hello 驗證」選項,將其關閉即可
參考來源
AI
2026年6月17日 星期三
Windows NAS或網路傳輸大檔時速度很慢
關閉 Windows 11 的 SMB 簽章方式如下
按下 Win + X 鍵,選擇「終端機 (管理員)」或是搜尋「PowerShell」
使管理員系統身分執行
輸入以下指令
或是Nas上可以設定,請參考下方連結
參考來源
AI
與 Windows 間透過 SMB 傳輸資料的速度緩慢,該如何解決?
按下 Win + X 鍵,選擇「終端機 (管理員)」或是搜尋「PowerShell」
使管理員系統身分執行
輸入以下指令
Set-SmbClientConfiguration -RequireSecuritySignature $false輸入 Y 確認執行,完成後重開機。
或是Nas上可以設定,請參考下方連結
參考來源
AI
與 Windows 間透過 SMB 傳輸資料的速度緩慢,該如何解決?
2026年3月18日 星期三
Git GitHub上修改專案名稱+本機端修改
1.先修改github上專案名稱
2-1.將所有的內容push後從網頁端重新建立(時間較長)
2-2.在 VS Code 中打開 終端機 (Terminal)
輸入以下指令來檢查目前的遠端設定
a.到專案中 b.點選settings c.Repository name輸入新名稱 d.Rename2.本機端修改有兩種方式
2-1.將所有的內容push後從網頁端重新建立(時間較長)
2-2.在 VS Code 中打開 終端機 (Terminal)
輸入以下指令來檢查目前的遠端設定
git remote -v使用以下指令更新 URL(請將 新網址 替換為你在 GitHub 上看到的新 HTTPS 或 SSH 連結)
git remote set-url origin <您的新專案網址.git>
2025年12月20日 星期六
T-SQL 查看資料庫檔案容量
-- 查看資料庫檔案容量
SELECT
DB_NAME(database_id) AS '資料庫名稱',
physical_name N'實體檔案',
name AS 'Log檔名稱' ,
type_desc N'檔案類型',
state_desc N'檔案狀態',
CAST(size * 8.0 / 1024 AS DECIMAL(10,2)) AS 'Log大小(MB)'
FROM sys.master_files
--WHERE
--type_desc = 'LOG' -- 只看LOG
--AND database_id > 4 -- 排除系統資料庫
--AND DB_NAME(database_id) NOT IN ('ReportServer', 'ReportServerTempDB')
ORDER BY size DESC;
參考來源sys.master_files (Transact-SQL)
T-SQL 查指定資料庫Table欄位資訊
--查指定資料庫Table欄位資訊 --先登入選擇資料庫 SELECT a.Table_schema +'.'+a.Table_name as 表格名稱 ,b.COLUMN_NAME as 欄位名稱 ,b.DATA_TYPE as 資料型別 ,isnull(b.CHARACTER_MAXIMUM_LENGTH,'') as 長度 ,isnull(b.COLUMN_DEFAULT,'') as 預設值 ,b.IS_NULLABLE as 允許空值 ,( SELECT value FROM fn_listextendedproperty (NULL, 'schema', a.Table_schema, 'table', a.TABLE_NAME, 'column', default) WHERE name='MS_Description' and objtype='COLUMN' and objname Collate Chinese_Taiwan_Stroke_CI_AS = b.COLUMN_NAME ) as 欄位備註 FROM INFORMATION_SCHEMA.TABLES a LEFT JOIN INFORMATION_SCHEMA.COLUMNS b ON a.TABLE_NAME = b.TABLE_NAME WHERE TABLE_TYPE='BASE TABLE'參考來源
系統資訊架構檢視 (Transact-SQL)
T-SQL 查指定資料庫Table筆數
--查指定資料庫Table筆數 --先登入選擇資料庫 SELECT a.name as 表格名稱 , MAX(b.rows) as 目前筆數 FROM sysobjects a, sysindexes b WHERE a.xtype = 'U' AND b.id = OBJECT_ID(a.name) GROUP BY a.name ORDER BY 表格名稱參考來源
sys.sysobjects (Transact-SQL)
sys.sysindexes (Transact-SQL)
T-SQL 查指定資料庫所有Table
--查指定資料庫所有Table --先登入選擇資料庫 select * from sysobjects where xtype = 'U' or xtype = 'v' order by xtype --AF = 聚合函數 (CLR) --C = CHECK 條件約束 --D = 預設或 DEFAULT 條件約束 --F = FOREIGN KEY 條件約束 --L = 記錄 --FN = 純量函式 --FS = 元件 (CLR) 純量函式 --FT = 元件 (CLR) 資料表值函式 --IF = 內嵌數據表函式 --IT = 內部數據表 --P = 預存程式 --PC = 元件 (CLR) 預存程式 --PK = PRIMARY KEY 條件約束 (類型為 K) --RF = 複寫篩選預存程式 --S = 系統資料表 --SN = 同義字 --SO = 時序 --SQ = 服務佇列 --TA = 元件 (CLR) DML 觸發程式 --TF = 資料表函式 --TR = SQL DML 觸發程式 --TT = 資料表類型 --U = 用戶數據表 --UQ = UNIQUE 條件約束 (類型為 K) --V = 檢視 --X = 擴充預存程式參考來源
sys.sysobjects (Transact-SQL)
2025年12月4日 星期四
筆記 使用Babel開發測試React
僅測試時使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>使用babel測試開發React</title>
<!-- React 和 ReactDOM(開發版本) -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<!-- Babel Standalone:讓瀏覽器即時編譯 JSX -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<!-- axios -->
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>
<body>
<div id="root"></div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"></script>
<script type="text/babel">
const App = () => {
const { useState } = React;
const [count, setCount] = useState(0);
const handleClick = () => {
setCount(count + 1);
}
return (
<>
<h5>{count}</h5>
<button className="btn btn-primary" onClick={handleClick}>+1</button>
</>
)
}
ReactDOM.createRoot(document.querySelector('#root')).render(<App />);
</script>
</body>
</html>
2025年11月27日 星期四
2025年11月4日 星期二
筆記 前端開發簡易使用https方法 VS Code + mkcert + Vite
情境如果已經拿到一個網站是"資料夾類型"例如剛切好html + css + javascript,測試時想使用https開啟瀏覽器,Live Server雖然也可以,但是比較麻煩複雜,以下方式AI提供測試改良,蠻簡單的。
PS.已經是vite專案的話1>5>6即可
1.下載mkcert,一般windows選mkcert-v1.4.4-windows-amd64.exe,下載後重新命名"mkcert.exe",放於C:\Windows或C:\Windows\System32底下
2.新增vite.config.js package.json .gitignore到專案底下,內容如下
4.vs code > 終端機(termainal) > npm install -y
5.vs code > 終端機(termainal) > mkcert localhost(產生憑證)
6.vs code > 終端機(termainal) > npm run dev
PS.已經是vite專案的話1>5>6即可
1.下載mkcert,一般windows選mkcert-v1.4.4-windows-amd64.exe,下載後重新命名"mkcert.exe",放於C:\Windows或C:\Windows\System32底下
2.新增vite.config.js package.json .gitignore到專案底下,內容如下
vite.config.js
import { defineConfig } from 'vite';
import fs from 'fs';
export default defineConfig({
server: {
https: {
key: fs.readFileSync('./localhost-key.pem'),
cert: fs.readFileSync('./localhost.pem')
},
port: 3000,
open: true
}
});
package.json
{
"name": "20260222_1",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"deploy": "vite build && gh-pages -d dist"
},
"devDependencies": {
"vite": "^7.2.7",
"gh-pages": "^6.3.0"
}
}
.gitignore node_modules/ dist/ .vite/ npm-debug.log* .yarn-debug.log* .yarn-error.log* .pnpm-debug.log* .vscode/ .DS_Store Thumbs.db # mkcert local certificates localhost.pem localhost-key.pem3.改package.json裡的name變成你的專案名稱
4.vs code > 終端機(termainal) > npm install -y
5.vs code > 終端機(termainal) > mkcert localhost(產生憑證)
6.vs code > 終端機(termainal) > npm run dev
2025年9月29日 星期一
未分類 威力導演365無法匯出
直接點選.pds副檔名開啟專案後,點選匯出都沒反應,網路找了解決方式
1.檔案 > 開新專案
2.將要使用的影音檔都拉進媒體櫃如下圖
3.如果出現下列錯誤的話,整個軟體關掉或電腦重開,從1開始重作,如果沒錯就直接跳4
4.檔案 > 開啟專案 > 選擇您的.pds
參考網址:
Cyberlink PowerDirector 2025 不讓你匯出影片
1.檔案 > 開新專案
2.將要使用的影音檔都拉進媒體櫃如下圖
3.如果出現下列錯誤的話,整個軟體關掉或電腦重開,從1開始重作,如果沒錯就直接跳4
4.檔案 > 開啟專案 > 選擇您的.pds
參考網址:
Cyberlink PowerDirector 2025 不讓你匯出影片
2025年8月4日 星期一
未分類 開發好用套件
VS Code
Visual Studio Live Share: 即時程式碼共同作業工具
Chrome插件
Visual Studio
網頁
AJAX:AJAX:axios
輪播:swiper
動畫:Animate.css aos wow.js gsap parallax.js
瀑布流:masonry
3d圖:three.js
時間:mement.js
alert:sweetalert sweetalert2
eslint檢查 code 風格
多國:i18n
分頁:
2025年7月9日 星期三
Git make sure you configure your 'user.name' and 'user.email' in git
VS Code Commit時出現的錯誤
make sure you configure your 'user.name' and 'user.email' in git
開啟終端機輸入以下指令
make sure you configure your 'user.name' and 'user.email' in git
開啟終端機輸入以下指令
git config --global user.name "你git上面的名稱" git config --global user.email 你git註冊的mail
2025年5月26日 星期一
未分類 Nas 對接電腦傳輸速度變慢
使用網路芳鄰時跑的速度很慢
1.檢查網路線是否接好
2.網路線品質cat?
3.先檢查Nas跟PC或筆電的網路速度
4.透過 Windows (SMB / CIFS) 傳輸檔案時速度緩慢,該如何解決?或[網路芳鄰 (SMB)] 如何解決Windows 11無法使用SMB功能的問題?
5.通常會需要關閉SMB簽名要求,用管理員開啟Power Shell
透過 Windows (SMB / CIFS) 傳輸檔案時速度緩慢,該如何解決?
[網路芳鄰 (SMB)] 如何解決Windows 11無法使用SMB功能的問題?
1.檢查網路線是否接好
2.網路線品質cat?
3.先檢查Nas跟PC或筆電的網路速度
4.透過 Windows (SMB / CIFS) 傳輸檔案時速度緩慢,該如何解決?或[網路芳鄰 (SMB)] 如何解決Windows 11無法使用SMB功能的問題?
5.通常會需要關閉SMB簽名要求,用管理員開啟Power Shell
Set-SmbClientConfiguration -RequireSecuritySignature $false參考資料
透過 Windows (SMB / CIFS) 傳輸檔案時速度緩慢,該如何解決?
[網路芳鄰 (SMB)] 如何解決Windows 11無法使用SMB功能的問題?
2025年5月9日 星期五
Windows chkdsk
2025年4月14日 星期一
IIS At least one other site is using the same HTTPS binding and the binding is configured
一台Server IIS使用多網站憑證問題
At least one other site is using the same HTTPS binding and the binding is configured
解決方式
參考資料
IIS 多站台使用 HTTPS 憑證的設定方式
At least one other site is using the same HTTPS binding and the binding is configured
解決方式
勾選Require Server Name Indication中文版請參考下方參考資料
參考資料
IIS 多站台使用 HTTPS 憑證的設定方式
2025年4月1日 星期二
Git npm : 因為這個系統上已停用指令碼執行,所以無法載入
1.開啟PowerShell
2.執行
VSCode 執行 npm install 失敗
2.執行
get-executionpolicy3.如為Restricted執行
set-executionpolicy remotesigned4.如有例外改執行
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned參考資料
VSCode 執行 npm install 失敗
2025年3月21日 星期五
SQL Server 無法修改強制執行密碼原則
新增SQL使用者時,強制密碼原則未勾選時錯誤
"The CHECK_POLICY and CHECK_EXPIRATION options cannot be turned OFF when MUST_CHANGE is ON"
Can't Alter Login
"The CHECK_POLICY and CHECK_EXPIRATION options cannot be turned OFF when MUST_CHANGE is ON"
USE Master
GO
ALTER LOGIN UserName WITH PASSWORD = 'password'
GO
ALTER LOGIN UserName WITH
CHECK_POLICY = OFF,
CHECK_EXPIRATION = OFF;
參考資料Can't Alter Login
訂閱:
文章 (Atom)






