發表文章

目前顯示的是 4月, 2022的文章

reporting server 設定被搞爛 怎麼辦

1.停止reporting server 2.找到 RSReportServer.config   路徑可能在以下位置 Native mode report server APPLIES TO:  ✔️ SQL Server Reporting Services (2016) C:\Program Files\Microsoft SQL Server\MSRS13.MSSQLSERVER\Reporting Services\ReportServer   APPLIES TO:  ✔️ SQL Server Reporting Services (2017 and later) C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\ReportServer APPLIES TO:  ✔️ Power BI Report Server C:\Program Files\Microsoft Power BI Report Server\PBIRS\ReportServer 先備份檔案 然後找到有問題的區塊 (EX:URL錯誤設定區塊) 刪除它 重啟reporting server  看看恢復沒 footer See also :

Powershell 啟動/停止azure web app

圖片
以下是透過powershell去開關azure web service的方法 #============install azure powershell module =========== Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser Install-Module -Name PowerShellGet -Force Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force #=======================                                                                         # Logging in to Azure   Connect-AzAccount -TenantId 305675df-dc39-4b66-8034-b8e7CCCCCC <-這個換成你AZURE AD的租戶編號 在這裡   Stop-AzWebApp -ResourceGroupName "LAB" -Name "fenderweb"   Start-AzWebApp -ResourceGroupName "LAB" -Name "fenderweb"      your code here footer See also :