mikebai.com

  • Home
  • dev
  • DotNET
  • M365
  • 搞笑
  • 杂七杂八
  • FocusDict
M365
M365

change powerapps language

There are a few options to do that: If you are using Edge or Internet Explorer, the language of your system will be used to display the portal. If you want to change the language of the portal to English, change the default language in the computer's Settings app If you are using Chrome, the language can be changed by going to chrome://settings/languages; there you can add English (if not there already), and move it to the top You can override the language by using the ?l (lowercase L) parameter: if you browse to https://web.powerapps.com?l=en-US you will get the page in English, regardless of the system (or browser) configuration

2020-09-26 0comments 108hotness 0likes mikebai Read all
M365

Managing public IP prefixes in Azure using PowerShell

Contents of this article Creating a new public IP prefix Creating public IPs from a public IP prefix Public IPs can be essential for services such as application gateways, firewalls, and virtual network gateways in Azure, especially when it comes to making these services accessible from the internet. Assigning a public IP address to a service in Azure is simple. Easy to use - Restore VMs, files or apps - VMware, Hyper-V - Free forever

2020-03-16 0comments 110hotness 0likes mikebai Read all
M365

CIDR网络

计算器 https://www.sioe.cn/xinqing/CIDR.php https://www.ipaddressguide.com/cidr CIDR是英文“Classless Inter-Domain Routing”的简写,中文名称“无类别域间路由”,是网络中分配IP地址的一种方法。 CIDR抛弃了传统的ABC类IP地址以及划分子网的概念,减轻了路由表数据过大的问题。CIDR使用如下格式的IP地址表示法: [网络前缀][主机地址]/网络前缀所占位数 CIDR将IP地址划分为网络前缀和主机地址两个部分,“/”斜线后面是网络前缀所占的位数,这样通过网络前缀所占的位数就可以得到子网掩码。 例如:192.168.0.1/24 这是一个局域网的CIDR格式地址,IP地址192.168.0.1的二进制表示法是: 11000000 10101000 00000000 00000001 前24位是网络前缀,后8位是主机地址,令主机地址分别为全0和全1就可以得到一个CIDR地址块的最小地址和最大地址,即: 最小地址:11000000 10101000 00000000 00000000 = 192.168.0.0 最大地址:11000000 10101000 00000000 11111111 = 192.168.0.255 令网络前缀全1,主机地址全0,就可以得到子网掩码: 子网掩码:11111111 11111111 11111111 00000000 = 255.255.255.0 可以看到,相对于使用IP地址+子网掩码的方法,CIDR格式地址更加简洁。 注意: 在一个子网中,起始IP(最小地址)为该网段的网络地址,结束IP(最大地址)为该网段的广播地址,不可分配给用户使用。如上例中可分配给用户的有效IP范围是192.168.0.1~192.168.0.254。

2020-03-16 0comments 109hotness 0likes mikebai Read all
M365

get azure account tenant Id

The tenant ID is tied to ActiveDirectoy in Azure Navigate to Dashboard Navigate to ActiveDirectory Navigate to Manage / Properties Copy the "Directory ID" Profit

2020-03-15 0comments 123hotness 0likes mikebai Read all
M365

install AzureAZ

PowerShell is both a command-line shell and scripting language and perfect for automating administrative tasks. When working with Microsoft Azure, Microsoft recommends to use the new Azure PowerShell Az module. See how to uninstall the outdated Azure PowerShell AzureRM , how to install the new Az module for PowerShell 5.x and 6.x and how to connect and to get a inventory of your resources and a little bit of Cloud Shell here. Azure PowerShell "Az" is the successor of "AzureRM" For working with Azure PowerShell, the AzureRM module is outdated. AzureRM is still officially maintained and will get bug fixes up through December 2020, but Microsoft strongly recommends to switch to the Az module. The new Azure PowerShell Az module is available since December 2018 and, as the documentation says, offers shorter commands, improved stability, and cross-platform support since it's running on the .NET Standard library which means it runs on PowerShell 5.x and PowerShell 6.x (PS 6.x can run on Linux, macOS, and Windows). I see, "Az" is shorter than "AzureRM"...   Anyway, Az also offers feature parity and an easy migration path from AzureRM. See more at Introducing the new Azure PowerShell Az module. Uninstall Azure PowerShell AzureRM

2020-03-15 0comments 128hotness 0likes mikebai Read all
M365

Uninstall the AzureRM module

详细→ https://docs.microsoft.com/en-us/powershell/azure/uninstall-az-ps?view=azps-3.6.1 Uninstall the AzureRM module If you have the Az module installed on your system and would like to uninstall AzureRM, there are two options that don't require running the Uninstall-AllModules script above. Which method you follow depends on how you installed the AzureRM module. If you're not sure of your original install method, follow the steps for uninstalling an MSI first. Uninstall Azure PowerShell MSI If you installed the Azure PowerShell AzureRM modules using the MSI package, you must uninstall through the Windows system rather than PowerShell.

2020-03-15 0comments 115hotness 0likes mikebai Read all
M365

How to execute Microsoft Azure PowerShell commands on Azure Automation

As you know, Azure Automation is really great feature to automate your schedulable tasks both public cloud an on-premise. There are massive documents to describe how to do that including abstraction. I will introduce how to do that simply with screenshots. Create your Azure Automation Account At first, note when you create Azure Automation account. And you must create "Azure Run As account" like below, because it's mandatory to execute your Azure Automation scripts called as "Runbook". This probably need your Azure Active Directory privilege of App Registration. Create your Runbook Create a Runbook used to execute your scripts. Choose "Runbook" from left side of you Azure Automation account and click "Add a runbook" like below. And input your Runbook name and choose "PowerShell" as your Runbook type. Create your scripts into your Runbook Open your Runbook and click "Edit" to create your script. Update your script like below. $Conn = Get-AutomationConnection -Name AzureRunAsConnection Add-AzureRMAccount -ServicePrincipal -Tenant $Conn.TenantID -ApplicationId $Conn.ApplicationID -CertificateThumbprint $Conn.CertificateThumbprint get-azurermresourcegroup | ForEach-Object { $_.ResourceGroupName } The name of "AzureRunAsConnection" should be created in "'your Azure Automation account name'- Connections". Once again, this is mandatory to execute your script. Confirm it like below if you need. After updating the script, click "Test pane" to test your script. You can execute your script by clicking "Start" button, so you can take result like below. Now you can publish your script by clicking "Publish" button to schedule and collaborate with other Runbooks. After publishing that, confirm the status like below. Schedule your Runbook Go back to top of your Azure…

2020-03-15 0comments 108hotness 0likes mikebai Read all
M365

res://ieframe.dll/acr_error.htm 问题

IE浏览器的扩展组件问题 无法确定具体组件时,删除所有↓↓↓↓ HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects 删除Browser Helper Objects下的所有子key

2020-03-15 0comments 113hotness 0likes mikebai Read all
M365

How to find your Office 365 tenant ID?

Your Office 365 tenant ID is a globally unique identifier (GUID) that is different than your tenant name or domain. On rare occasion, you might need this identifier, such as when configuring Windows group policy for OneDrive for Business. If you do need to find your Office 365 tenant ID, it’s pretty easy. Choose one of the following procedures. Use the Azure AD portal Office 365 uses Azure AD to manage user accounts. You can find your tenant ID in the Azure AD portal. You’ll need to be an Azure AD administrator. To find your Office 365 tenant ID in the Azure AD portal Log in to Microsoft Azure as an administrator. In the Microsoft Azure portal, click Azure Active Directory. Under Manage, click Properties. The tenant ID is shown in the Directory ID box. Use Windows PowerShell You can use Windows PowerShell to find the tenant ID. You’ll need the Microsoft Azure PowerShell module. Open a Microsoft Azure PowerShell command window and run the following script, entering your Office 365 credentials when prompted. Login-AzureRmAccount Your tenant ID is listed in the output.

2020-03-15 0comments 115hotness 0likes mikebai Read all
M365

Azure VNet介绍

Azure VNet的介绍 VNet是Azure云中逻辑隔离的虚拟网络。它包含两个含义: Azure的用户可以在VNet中创建自己的各种资源,感觉想自己的数据中心中一样; 在一个VNet中创建的资源和其它VNet创建的资源相互隔离,是Azure云中网络多租户的具体实现形式。 Azure的VNet可以提供如下图的三大类服务: VNet内部提供的网络服务,包括子网的划分、网络安全和路由等功能 前端接入,提供公网IP地址、DNS地址解析、Source/Destination NAT、负载均衡等等各种服务 后端连接,提供IPSec Site-Site/Point-Site VPN,以及专线接入等服务。 Azure的各种网络服务大多是围绕Azure的VNet的,所以VNet是Azure Networking的基础。下面将介绍如何创建Azure VNet。 Azure VNet的部署

2020-03-14 0comments 109hotness 0likes mikebai Read all
1…56789…11

Recent Posts

  • c# winform适配高dpi
  • com.microsoft.sqlserver.jdbc.SQLServerException “trustServerCertificate”属性设置为“false”,但驱动程序无法使用安全套接字层 (SSL) 加密与 SQL Server建立安全连接
  • java -cp 用法介绍
  • HTML 容器元素
  • MVC的cshtml的介绍

Recent Comments

No comments to show.

COPYRIGHT © 2025 mikebai.com. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang