Microsoft Docs - 最新記事
docs.microsoft.com は、Microsoft 技術文書の新しいホームとして、コンテンツの Web エクスペリエンスだけでなく、ソリューションを学習、管理、デプロイするために使用するコンテンツを作成およびサポートする方法も新しくしました。 ここには、マイクロソフトのテクノロジに関連するすべてのものが統合されています。docs.microsoft.com 上の新着情報とエキサイティングな情報を常に取り入れられるようにするために、専用のフィードを作成しました。
Selected Feed: PowerShell
How to get Azure lockout policy settings using Powershell commands? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178759/how-to-get-azure-lockout-policy-settings-using-pow Hi, I am looking for a way to get the lockout policy settings in Azure using Powershell (preferably Microsoft Graph PowerShell SDK). The specific settings I want to export with Powershell are 'Lockout threshold' and 'Lockout duration in seconds' that can be found in the Azure portal at Home > Security > Authentication Methods > Password Protection. I have already tried many commands of the Microsoft Graph and the AzureAD Powershell module, but none have displayed the values of the specific settings I am looking for. The command that comes closest to what I want according to the documentation is 'Get-MgDirectorySetting', but this just seems to give an empty output. Any help with this issue would be much appreciated! Best regards.Published Date : 2023年2月8日
Azure AD SSO SAML Claims Attribute - User.manager - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/653519/azure-ad-sso-saml-claims-attribute-user-manager Hi, I'm trying to add a custom SAML Claims attribute to my Enterprise App but the attribute I need isn't showing up. It's the Manager attribute and it is there on the User account but just not visible as a clams attribute. I've read that is currently isn't supported but can anyone else confirm? https://learn.microsoft.com/en-us/answers/questions/332964/saml-claim-for-manager-value.htmlPublished Date : 2023年2月8日
Get-MgSite -search "*" - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178627/get-mgsite-search-* At some point in the last month, we have lost the ability to use the following command: get-mgsite -search "*" This command would result in a listing of all the Sharepoint Online sites in my tenant. Now it returns nothing. In fact, most terms that I enter in the -search query field return nothing. get-mgsitelist requires the siteid as a parameter and I am not sure how I can get the site ID if I cannot search for the site by name. For example: $siteid = (Get-MgSite -Search "*" | where {$_.name -eq "<SiteName>"}).id $listid = (Get-MgSiteList -SiteId $siteid| where {$_.name -eq "<listname>"}).id How do you list all the sites in the tenant now? I work around this issue by performing the following: Get-MgSite -siteid "<domain>.sharepoint.com**:**/sites/<sitename>" Thanks,Published Date : 2023年2月8日
How can I use PowerShell Script to extract all engagement and assignment completion data from Class Teams? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178797/how-can-i-use-powershell-script-to-extract-all-eng Hi there, I would like to extract all engagement and assignment completion data from across all of our class teams in order to delve into this data and incorporate it into our data models on our pupils. Is this possible through PowerShell? If so, i would be very grateful of a steer of the code to achieve this. Many thanks! DarrenPublished Date : 2023年2月8日
How to get guest users list from Azure AD - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1166405/how-to-get-guest-users-list-from-azure-ad Hi I have multiple domains in my tenant. I want to get a list of guest users. Please see below example of account, what kind of guest users I want to get. rambo.jan_test.com#EXT#@abc.onmicrosoft.comm (This is UPN) I have number of accounts like this in my tenant. Please provide me a powershell cmdlet or script. thanks RegardsPublished Date : 2023年2月8日
Data export - Something went wrong Error code: 500.321.998.100 - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178677/data-export-something-went-wrong-error-code-500-32 Hi All, I encounter the following error when I click the Data export page under Extend. If anyone has any ideas, I would greatly appreciate it. Thank you. Sammie Something went wrong Error code: 500.321.998.100Published Date : 2023年2月8日
how to add cors for apim using powershell - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168385/how-to-add-cors-for-apim-using-powershell i need to add Allowed origins, Allowed headers and Allowed methods for apim using powersledd and below is my code. az apim api import --resource-group "$apimresourcegroup" --service-name "$apimname" --path "$apimapiurlsuffix" --api-id "$apiid" --subscription-required false --display-name "$apidisplayname" --description "$apidisplayname" --specification-url "$functionappswaggerurl" --specification-format OpenApi --service-url "$surl" --subscription-required "false" please, production issuePublished Date : 2023年2月8日
AVD information - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1167845/avd-information Hi All I am using azure virtual desktop. i have a Host Pool and i want to export all AVDs information to csv file. When i go to Azure Virtual Desktop-->Host Pools-->Pool1. i can export to csv file but i want to get what SKUs they are. i don't see that information. is it possible to get that information from PowerShell. When i use the below syntax i can see AVDs Get-AzWvdSessionHost -ResourceGroupName "myrg" -HostPoolName "pool1" | Select-Object * How can i fetch the below information to csv file for my hostpool(pool1) Name, status, assigneduser subscription skuPublished Date : 2023年2月8日
Internet Shortcut (.url file) no longer supports remote icon - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/120626/internet-shortcut-(-url-file)-no-longer-supports-r Hi, I want to deploy a shortcut to a web application, using a custom icon which is hosted on a publicly accessible web server. I've been using the '.url' format for doing this and it was working as expected until recently. Around the start of September 2020 all my newly deployed shortcuts would only show the user's default web browser icon, instead of my hosted one. I've found various posts online, some of which say it should work, some which say the icon must be local (or at least on a network share) in order to load. Note that if the icon makes it into the icon cache, which it can by using it from a '.lnk' shortcut, then it works fine, but I want to continue using '.url' files if at all possible. Sample of a shortcut file which illustrates the issue: Has this functionality been dropped in a recent Windows update (I know there were 2 on 8th / 9th Sept 2020)? Affected operating systems: Windows 10 Pro (build 17763 & 18363) Windows 7 Enterprise SP1 build 7601 A colleague also tested on: Windows 2008 Windows Server 2012 R2 Windows Server 2016 Has anyone any suggestions or insight into this change in behaviour please? Thanks, Niall.Published Date : 2023年2月8日
how to migrate a distribution group from on premise to exchange online - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1167339/how-to-migrate-a-distribution-group-from-on-premis I want the on premise distribution group to communicate with a group on exchange onlinePublished Date : 2023年2月8日
Request for help to track ldap, kerberos and ntlm traffic to domain controllers - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178751/request-for-help-to-track-ldap-kerberos-and-ntlm-t Hi All, We are planning to migrate the AD objects and application servers from existing active directory forest to another active directory forest We had planned a session with every application team to understand their application dependancy with Active directory, However we are planning to take a report of ldap, kerberos and ntlm traffic to domain controllers I have referred the below link, however the attachment "Import-DC_Info.zip" provided in the below Microsoft link to parse the logs is not working, So thought of asking help in this forum to see if anyone has published PowerShell scripts for this same purpose or anyone has working attachment of "Import-DC_Info.zip", Please share with us https://techcommunity.microsoft.com/t5/core-infrastructure-and-security/domain-and-dc-migrations-how-to-monitor-ldap-kerberos-and-ntlm/ba-p/256796Published Date : 2023年2月8日
How do I connect to Azure Blob with Powershell unattended - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178750/how-do-i-connect-to-azure-blob-with-powershell-una Hi, When Trying to use the below , I get the following error, how can I loging using MFA unattended into azure You must use multi-factor authentication to access tenant bladebla please rerun 'Connect-AzAccount' with additional parameter '-TenantId bladebla'.Published Date : 2023年2月8日
How do I connect to Azure Blob with Powershell unattended - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178749/how-do-i-connect-to-azure-blob-with-powershell-una Hi, I want to be able to connect to an Azure xlsx and do some cutting and slicing with Powershell. However I cannot work out how to do unattended login for my script. Can anyone help? I have tried the following and receive the following error You must use multi-factor authentication to access tenant bladebla, please rerun 'Connect-AzAccount' with additional parameter '-TenantId bladebla' Any help appreciated.Published Date : 2023年2月8日
For SharePoint Online permissions, How to have this checkbox unchecked by default? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178668/for-sharepoint-online-permissions-how-to-have-this Hi there, On SharePoint Online, while grating permissions on a folder, the checkbox to grant permissions on subfolders even if they have unique permissions is checked by default. How to have this checkbox unchecked by default? Any PowerShell, or any other way? Thanks.Published Date : 2023年2月8日
How to add Top Navigation in SharePoint Online Modern Communication Site? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168471/how-to-add-top-navigation-in-sharepoint-online-mod Hello Team, How to add Top navigation in Communication SharePoint Online site? I have one requirement that I have to add top navigation in communication site and it should be access to all other Team Site collections. Also I have activated publishing feature in communication site using PowerShell. I do not want use Hub Communication site. I have to manage only from Simple Communication site collection. Thanks in Advance. Thank You, SamadhanPublished Date : 2023年2月8日
Source Control doesn't sync runbooks - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1166113/source-control-doesnt-sync-runbooks Hello, we have and issue with Source control on one automation account. It suddenly stopped working yesterday: Job summary shows that 100 runbooks are synced but 30 runbooks are not synced: ======================================================================================================== Azure Automation Source Control. Supported runbooks to sync: PowerShell Workflow, PowerShell Scripts, DSC Configurations, Graphical, and Python 2. Setting AzureEnvironment. Source control information for syncing: [RepoUrl = https://xyz.visualstudio.com/AzureRunbooks/_git/AzureRunbooks] [Branch = master] [FolderPath = /AutomationAccount/scripts] Verifying url: https://xyz.visualstudio.com/AzureRunbooks/_git/AzureRunbooks Connecting to VSTS... Source Control Sync Summary: 100 files synced: - AD-EnableMailAndSkypeV2.ps1 - Assign-TeamsPhoneNumber.ps1 - Backup-AWSS3Bucket.ps1 - Backup-AzureRunbooks.ps1 - Backup-ExchangeDynamicGroups.ps1 - Check-ADComputerOwner.ps1 - Check-ADmachinesVLANs.ps1 - Check-HelpdeskMails.ps1 .... Failed to import runbook: - Send-AzureADSPPermissions.ps1 - Send-CentaurReport.ps1 - Send-EmployeeJiraNotifications.ps1 - Send-EmployeeLeave.ps1 - Send-IntuneLastSyncDateInfo.ps1 - Send-IntuneMissingInventoryNumber.ps1 ... And in the Error log: We also noticed that all runbooks that are not synced are listed on the second page within the list: Do we need to change something in our environment? Could it be something from Microsoft's side? ThanksPublished Date : 2023年2月8日
Getting error while deleting user contact from Echange online 365 - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168588/getting-error-while-deleting-user-contact-from-ech I had a user in my Exchange online 365. I wanted to delete the user mailbox as well as contact. The mailbox was successfully deleted but the contact is still showing in the contact list. I have tried multiple times to delete the contact but an error occurs says: Contact deletion failed Error: We are experiencing an issue with our server, please try submitting your request at a later time. I have tried to delete the contact multiple times but this error occurs every time.Published Date : 2023年2月8日
Disable-TlsCipherSuite -Name "TLS_RSA_WITH_3DES_EDE_CBC_SHA" does not remove the cipher suite from list - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168459/disable-tlsciphersuite-name-tls-rsa-with-3des-ede Hi, I have quite the conundrum, when I run Disable-TlsCipherSuite -Name "TLS_RSA_WITH_3DES_EDE_CBC_SHA" on our exchange server, it executes as expected and returns an error when I attempt to run it again, indicating it is already disabled. However, tests from SSLLab and running Get-TlsCipherSuite | fl -property CipherSuite, name shows, that it is, infact, still enabled. Further more it is being reported as an accepted cipher from BlackstoneOne in our IFCR report. I have been searching for hours now and cannot find a deciesive answer, it appears that most are content with powershell returning an error as the indication it is disabled. I, however, need to be absolutely certain is it disabled. Any and all help in this regard is highly appriciated as I' am at this point in time, stuck :(Published Date : 2023年2月8日
On SharePoint Online, is there a way to block unique permissions on files and folders (forcing users to use a folder on the top level when new permissions are needed)? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178666/on-sharepoint-online-is-there-a-way-to-block-uniqu Hi there On SharePoint Online, is there a way to block unique permissions in a document library (so only the top-level folders can have unique permissions, but none of the sub-folders)? When users cannot create unique permissions, they will be forced to use a new folder on the top level and that's what we need. Any PowerShell? Power Automate? Graph API? Or anything else? Thank you.Published Date : 2023年2月8日
Graph API for creation of Account Protection Local User Group Membership policy - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1159000/graph-api-for-creation-of-account-protection-local Hi, I would like to create a Local user group membership policy on the Account Protection page via Microsoft Graph or Powershell. I have been able to create an Account Protection policy based on an existing configuration template (0f2b5d70-d4e9-4156-8c16-1397eb6c54a5), but have not found a template for Local user group membership - It does not seem to exist. I queried for the available templates using the deviceManagement/templates endpoint. I know there is a way to accomplish this using CSP policies, but this results in the policy being created within the Configuration Profiles blade. It is a requirement that the policies be created within the Account Protection blade for easy organization and management. I have not found a way of automating creation of Local user group membership policies within the Account Protection page. Is anyone aware of a way I can do this? Thank youPublished Date : 2023年2月8日
Can't update Azure Event Grid Partner Topic from a PowerShell AzureFunction - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168010/cant-update-azure-event-grid-partner-topic-from-a I want to update a Subscription of an Azure Event Grid Partner Topic to change the ExpirationDateTime. To do so I'm using a PowerShell AzureFunction authenticated with an App Registration on GraphAPI. I'm using the Update-MgSubscription function to update the field above. When I execute the function I get the following error message: "The app id 'appid' is not enabled for event grid subscription." where 'appid' is the id of my App Registration. I was able to update the field with Graph Explorer but I couldn't manage to find a specifc permission to do it with the App Registration. I've tried to allow the App in the IAM of the Azure Event Grid Partner Topic with no success. Any idea?Published Date : 2023年2月8日
How to get Scope of policy exemption by powershell - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168528/how-to-get-scope-of-policy-exemption-by-powershell I am trying to get details like Exemption Scope, actual name, exclusion (not just exemptions), created by(author - not a string, need a proper name) like its showing in Azure Portal.Published Date : 2023年2月8日
App Service extension for Azure Arc Kubernetes always fails to install - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/568304/app-service-extension-for-azure-arc-kubernetes-alw I'm unable to get the App Service extension to install so I can test running an App Service in an Azure Arc Kubernetes. I've tried following the article here https://learn.microsoft.com/en-us/azure/app-service/manage-create-arc-environment?tabs=powershell and I've tried both an AKS cluster and local cluster via Docker. The app service extension always says "Failed" for the "Install State" with the error below. "Error: {failed to install chart from path [] for release [appservice-ext]: err [release appservice-ext failed, and has been uninstalled due to atomic being set: timed out waiting for the condition]} occurred while doing the operation : {Installing the extension} on the config" Anyone managed to get this working? I've created every resource in "East US" since it's in preview.Published Date : 2023年2月8日
Is the public preview feature of Cost Management anomaly detection approachable in Powershell or API? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/983171/is-the-public-preview-feature-of-cost-management-a In the cost analysis public preview there is now an option for detecting anomalies within subscriptions. It is possible to receive an email for every anomaly detected through the "cost alerts" option but as far as I can tell you can't get the data from any REST API yet (neither cost management or consumption). So my question is: Is there any way in which these cost anomalies can be queried through either Powershell or an API call so that I could keep track of them better? Documentation on cost anomaly detection: https://learn.microsoft.com/en-us/azure/cost-management-billing/understand/analyze-unexpected-chargesPublished Date : 2023年2月8日
List SQL Servers on Network in VBA - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178683/list-sql-servers-on-network-in-vba Is there any possible way to list all servers on a network using VBA? I used to use SQLDMO but it's gone. I tried Powershell (System.Data.Sql.SqlDataSourceEnumerator]::Instance.GetDataSources()), but it won't list my local server on my laptop. Any suggestion would be appreciated. Thanks.Published Date : 2023年2月8日
Azure DevOps ロードマップ
https://learn.microsoft.com/ja-jp/azure/devops/release-notes/features-timeline Azure DevOps 機能のロードマップPublished Date : 2023年2月8日
移行の詳細 - Microsoft Stream
https://learn.microsoft.com/ja-jp/stream/streamnew/migration-details 説明が必要な Stream 移行ツールのさまざまなトピックに関する情報。Published Date : 2023年2月8日
VS-Code loaded project not showing in default project for package manager console NuGet package - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178641/vs-code-loaded-project-not-showing-in-default-proj I am trying to work on and get a powershell script running that requires the MS Exchange WebServices dll from NuGet, when i try to load the script as a project in VS Code and install the dll as a package from NuGet via the Package Manager Console it gives me the error "Project 'Default' is not found", but there is no package available to be selected in the Default Project dropdown and I have verified that the project is loaded in the Solution Explorer, what am I missing?Published Date : 2023年2月8日
[電話で Outlook モバイル アプリを取得して設定する] オプションを削除する - Outlook
https://learn.microsoft.com/ja-jp/outlook/troubleshoot/installation/how-to-remove-get-and-set-up-outlook-mobile-app-on-my-phone-option Outlook から [電話で Outlook モバイル アプリを取得して設定する] オプションを無効にする方法について説明します。Published Date : 2023年2月8日
リソースの免除 - Power Platform
https://learn.microsoft.com/ja-jp/power-platform/admin/dlp-resource-exemption 信頼できるアプリとフローを DLP ポリシーから免除するPublished Date : 2023年2月8日
Powershell script to delete particular type of file extension without removing the Folders - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1167799/powershell-script-to-delete-particular-type-of-fil Hello All, I have requirement to remove the particular type of files extension from the computer without removing the folders. The files are in various path of the system and i have planned to map the C:/ and also log need to be stored for what are all the files are getting deleted. Any advise or suggestion on this are highly appreciated. Planned to use the SCCM to run the script to get it deleted on the remote machines. Below are the scripts i have came across Remove-Item -Recurse -Path C:\Delete-Testing* -exclude dontdelete.txt,foldertokeepPublished Date : 2023年2月8日
Sign in with Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/authenticate-azureps How to sign in with Azure PowerShell as a user, service principal, or with managed identities for Azure resources.Published Date : 2023年2月8日
Get started with Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/get-started-azureps Get started with Azure PowerShellPublished Date : 2023年2月8日
Azure PowerShell Documentation
https://learn.microsoft.com/ja-jp/powershell/azure/ Official product documentation for Azure PowerShell. Azure PowerShell is a collection of modules for managing Azure resources from PowerShell.Published Date : 2023年2月8日
Install Azure PowerShell with an MSI
https://learn.microsoft.com/ja-jp/powershell/azure/install-az-ps-msi How to install Azure PowerShell without PowerShellGet using an MSIPublished Date : 2023年2月8日
Introducing the Azure Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/new-azureps-module-az Introducing the Az PowerShell module, recommended for interacting with Azure, and the replacement for the AzureRM PowerShell module.Published Date : 2023年2月8日
What is Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/what-is-azure-powershell This article is an introduction to Azure PowerShell and its features.Published Date : 2023年2月8日
Use Azure service principals with Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/create-azure-service-principal-azureps Learn how to create and use service principals with Azure PowerShell.Published Date : 2023年2月8日
Uninstall Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/uninstall-az-ps How to perform a complete uninstall of Azure PowerShellPublished Date : 2023年2月8日
Automatically migrate PowerShell scripts from AzureRM to the Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/quickstart-migrate-azurerm-to-az-automatically Learn how to automatically migrate PowerShell scripts from AzureRM to the Az PowerShell module.Published Date : 2023年2月8日
Migrate Azure PowerShell scripts from AzureRM to Az
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-from-azurerm-to-az Learn the steps and tools for migrating Azure PowerShell scripts from AzureRM to the new Az PowerShell module.Published Date : 2023年2月8日
Troubleshooting the Azure Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/troubleshooting Troubleshooting the Azure Az PowerShell module.Published Date : 2023年2月8日
Manage Azure subscriptions with Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/manage-subscriptions-azureps Manage Azure subscriptions with Azure PowerShellPublished Date : 2023年2月8日
Use the Az PowerShell module behind a proxy
https://learn.microsoft.com/ja-jp/powershell/azure/az-powershell-proxy How to use the Azure Az PowerShell module behind a proxy serverPublished Date : 2023年2月8日
Azure PowerShell release notes
https://learn.microsoft.com/ja-jp/powershell/azure/release-notes-azureps Learn about all of the latest updates to the Azure PowerShell modules.Published Date : 2023年2月8日
Install the Azure Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/install-az-ps How to install the Azure Az PowerShell module from the PowerShell GalleryPublished Date : 2023年2月8日
Using Azure PowerShell in Docker
https://learn.microsoft.com/ja-jp/powershell/azure/azureps-in-docker How to use Azure PowerShell that is preinstalled in a Docker image.Published Date : 2023年2月8日
Format Azure PowerShell cmdlet output
https://learn.microsoft.com/ja-jp/powershell/azure/formatting-output How to format cmdlet output for Azure PowerShell.Published Date : 2023年2月8日
Run Azure PowerShell cmdlets in PowerShell Jobs
https://learn.microsoft.com/ja-jp/powershell/azure/using-psjobs Learn how to run Azure PowerShell cmdlets in parallel or as background tasks, using -AsJob and Start-Job.Published Date : 2023年2月8日
Azure AD to Microsoft Graph migration changes in Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/azps-msgraph-migration-changes This migration guide contains a list of Azure PowerShell changes for the Azure AD to Microsoft Graph migration in Az.Resources 5.1.0.Published Date : 2023年2月8日
Azure PowerShell support lifecycle
https://learn.microsoft.com/ja-jp/powershell/azure/azureps-support-lifecycle Details about the support lifecycle of the Azure PowerShell modulesPublished Date : 2023年2月8日
Query output of Azure PowerShell cmdlets
https://learn.microsoft.com/ja-jp/powershell/azure/queries-azureps How to query for resources in Azure and format the results.Published Date : 2023年2月8日
Configure Azure PowerShell global settings
https://learn.microsoft.com/ja-jp/powershell/azure/configure-global-settings Configure Azure PowerShell global settings using centralized and granular AzConfig cmdletsPublished Date : 2023年2月8日
Azure PowerShell versioning, release cadence, and breaking changes
https://learn.microsoft.com/ja-jp/powershell/azure/azps-versioning-release-cadence This article contains Azure PowerShell versioning, release cadence, and breaking change information for the Az PowerShell module.Published Date : 2023年2月8日
Frequently Asked Questions (FAQ)
https://learn.microsoft.com/ja-jp/powershell/azure/faq Frequently Asked Questions about Azure PowerShell.Published Date : 2023年2月8日
Intelligent context-aware command completion with Az Predictor
https://learn.microsoft.com/ja-jp/powershell/azure/az-predictor Using Az Predictor for intelligent context-aware command completion in Azure PowerShell.Published Date : 2023年2月8日
All changes from AzureRM to Azure PowerShell Az 1.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-1.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 1 release.Published Date : 2023年2月8日
Manage Azure resources with Invoke-AzRestMethod
https://learn.microsoft.com/ja-jp/powershell/azure/manage-azure-resources-invoke-azrestmethod How to use Azure PowerShell to manage resources with the Invoke-AzRestMethod cmdlet.Published Date : 2023年2月8日
Azure contexts and sign-in credentials
https://learn.microsoft.com/ja-jp/powershell/azure/context-persistence Learn how to reuse Azure credentials and other information across multiple PowerShell sessions.Published Date : 2023年2月8日
Migration guide for Az 6.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-6.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 6.0.0 release.Published Date : 2023年2月8日
Migration guide for Az 5.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-5.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 5.0.0 release.Published Date : 2023年2月8日
Azure command line tools survey guidance
https://learn.microsoft.com/ja-jp/powershell/azure/command-line-tools-survey-guidance This article contains guidance about the Azure command line tools survey.Published Date : 2023年2月8日
Upcoming breaking changes in Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/upcoming-breaking-changes Learn about upcoming breaking changes to the Azure Az PowerShell modulePublished Date : 2023年2月8日
Migration guide for Az 7.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-7.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 7.0.0 release.Published Date : 2023年2月8日
Migration guide for Az 3.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-3.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 3.0 release.Published Date : 2023年2月8日
Migration guide for Az 8.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-8.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 8.0.0 release.Published Date : 2023年2月8日
Migration guide for Az 2.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-2.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 2.0 release.Published Date : 2023年2月8日
Migration guide for Az 4.1.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-4.1.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 4.1.0 release.Published Date : 2023年2月8日
Migration Guide for latest Az.ServiceBus PowerShell Module
https://learn.microsoft.com/en-us/powershell/azure/migrate-az-9.0.1-servicebus This migration guide contains a list of breaking changes made to the Az.ServiceBus module in the Azure PowerShell 9.0.1 release.Published Date : 2023年2月8日
Migration Guide for latest Az.EventHub PowerShell Module
https://learn.microsoft.com/en-us/powershell/azure/migrate-az-9.0.1-eventhub This migration guide contains a list of breaking changes made to the Az.EventHub module in the Azure PowerShell 9.0.1 release.Published Date : 2023年2月8日
Migration guide for Az 9.0.1
https://learn.microsoft.com/en-us/powershell/azure/migrate-az-9.0.1 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 9.0.1 release.Published Date : 2023年2月8日
Automated assignment handling and provisioning of authorization roles to user accounts in Azure - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1167975/automated-assignment-handling-and-provisioning-of Hello experts, Is it feasible to achieve Automated assignment handling and provisioning of authorization roles to user accounts in Azure? If yes, how can we achieve this. Any idea would be appreciated. ThanksPublished Date : 2023年2月8日
動的データ マスク - Azure SQL Database
https://learn.microsoft.com/ja-jp/azure/azure-sql/database/dynamic-data-masking-overview 動的データ マスキングでは、Azure SQL Database、Azure SQL Managed Instance、Azure Synapse Analytics の特権のないユーザーに対して機密データをマスクすることにより、機密データの公開を制限しますPublished Date : 2023年2月8日
Azure Arc 対応 SQL Server - リリース ノート - SQL Server
https://learn.microsoft.com/ja-jp/sql/sql-server/azure-arc/release-notes 最新のリリース ノートPublished Date : 2023年2月8日
Power BI データセットのスケールアウト - Power BI
https://learn.microsoft.com/ja-jp/power-bi/enterprise/service-premium-scale-out Power BI データセットのスケールアウトによってデータセットのクエリ時間と更新時間を短縮することにより、Power BI のパフォーマンスを向上させる方法について説明しますPublished Date : 2023年2月8日
ワーク フォルダーの概要
https://learn.microsoft.com/ja-jp/windows-server/storage/work-folders/work-folders-overview ワーク フォルダーの概要 - PC やデバイスから作業ファイルにアクセスするための一貫した方法をユーザーに提供する、Windows Server のサーバーの役割です。Published Date : 2023年2月8日
Azure Maps Search REST client library for JavaScript
https://learn.microsoft.com/en-us/javascript/api/overview/azure/maps-search-rest-readme You can create the resource via the Azure Portal, the Azure PowerShell, or the Azure CLI.Published Date : 2023年2月8日
Azure Monitor ログ リファレンス - WVDSessionHostManagement
https://learn.microsoft.com/ja-jp/azure/azure-monitor/reference/tables/wvdsessionhostmanagement Azure Monitor ログの WVDSessionHostManagement テーブルのリファレンス。Published Date : 2023年2月8日
Exchange Online Protection の PowerShell への接続
https://learn.microsoft.com/ja-jp/powershell/exchange/connect-to-exchange-online-protection-powershell Exchange Online PowerShell V2 モジュールまたは V3 モジュールを使用して、先進認証または多要素認証 (MFA) を使用してスタンドアロン Exchange Online Protection PowerShell に接続する方法について説明します。Published Date : 2023年2月7日
Use Azure managed identities to connect to Exchange Online PowerShell
https://learn.microsoft.com/ja-jp/powershell/exchange/connect-exo-powershell-managed-identity Exchange Online PowerShell V3 モジュールと Azure マネージド ID を使用して PowerShell Exchange Online接続する方法について説明します。Published Date : 2023年2月7日
Use C# to connect to Exchange Online PowerShell
https://learn.microsoft.com/ja-jp/powershell/exchange/connect-to-exo-powershell-c-sharp Exchange Online PowerShell V3 モジュールと C# を使用してExchange Onlineに接続する方法について説明します。Published Date : 2023年2月7日
セキュリティ/コンプライアンス PowerShell に接続する
https://learn.microsoft.com/ja-jp/powershell/exchange/connect-to-scc-powershell Exchange Online PowerShell V2 モジュールと V3 モジュールを使用して、先進認証または多要素認証 (MFA) を使用して Security & Compliance PowerShell に接続する方法について説明します。Published Date : 2023年2月7日
Exchange Online PowerShell に接続する
https://learn.microsoft.com/ja-jp/powershell/exchange/connect-to-exchange-online-powershell Exchange Online PowerShell V2 モジュールまたは V3 モジュールを使用して、先進認証または多要素認証 (MFA) を使用して PowerShell Exchange Onlineに接続する方法について説明します。Published Date : 2023年2月7日
Exchange Online PowerShell とセキュリティ &コンプライアンス PowerShell でのアプリ専用認証
https://learn.microsoft.com/ja-jp/powershell/exchange/app-only-auth-powershell-v2 最新の認証とアプリ専用認証 (証明書ベースの認証または CBA とも呼ばれます) を使用して、スクリプトやその他の実行時間の長いタスクで PowerShell V2 モジュールと V3 モジュールをExchange Onlineする方法について説明します。Published Date : 2023年2月7日
What's new in the Exchange Online PowerShell module
https://learn.microsoft.com/ja-jp/powershell/exchange/whats-new-in-the-exo-module Exchange Online PowerShell モジュールの最新リリースで利用可能な新機能について説明します。Published Date : 2023年2月7日
Exchange Online PowerShell V2 モジュールと V3 モジュールについて
https://learn.microsoft.com/ja-jp/powershell/exchange/exchange-online-powershell-v2 管理者は、Microsoft 365 のすべての Exchange 関連 PowerShell 環境への接続に使用する、Exchange Online PowerShell V2 モジュールと V3 モジュールのインストール、メンテナンス、および設計について学習できます。Published Date : 2023年2月7日
Search-AdminAuditLog (ExchangePowerShell)
https://learn.microsoft.com/ja-jp/powershell/module/exchange/search-adminauditlog パラメーターを指定せずに Search-AdminAuditLog コマンドレットを実行すると、既定では最大 1,000 のログ エントリが返されます。 PowerShell Exchange Onlineでは、StartDate パラメーターまたは EndDate パラメーターを使用しない場合は、過去 14 日間の結果のみが返されます。 PowerShell Exchange Onlineでは、過去 90 日間のデータを使用できます。 90 日より前の日付を入力できますが、過去 90 日間のデータのみが返されます。 監査ログの構造とプロパティの詳細については、「 管理者監査ログの構造」を参照してください。 このコマンドレットを実行する際には、あらかじめアクセス許可を割り当てる必要があります。 このトピックにはこのコマンドレットのすべてのパラメーターが一覧表示されていますが、自分に割り当てられているアクセス許可に含まれていない一部のパラメーターにはアクセスできません。 コマンドレットを組織内で実行するために必要になるアクセス許可とパラメーターを調べるには、「 Find the permissions required to run any Exchange cmdlet」を参照してください。Published Date : 2023年2月7日
Set-Place (ExchangePowerShell)
https://learn.microsoft.com/ja-jp/powershell/module/exchange/set-place このコマンドレットを実行する際には、あらかじめアクセス許可を割り当てる必要があります。 このトピックにはこのコマンドレットのすべてのパラメーターが一覧表示されていますが、自分に割り当てられているアクセス許可に含まれていない一部のパラメーターにはアクセスできません。 コマンドレットを組織内で実行するために必要になるアクセス許可とパラメーターを調べるには、「 Find the permissions required to run any Exchange cmdlet」を参照してください。Published Date : 2023年2月7日
Microsoft Viva の管理者の役割とタスク
https://learn.microsoft.com/ja-jp/viva/microsoft-viva-admin-roles Microsoft Viva のViva コネクション、Viva ラーニング、Viva トピック、Viva インサイトの管理者の役割について説明します。Published Date : 2023年2月7日
Microsoft Intune の新機能
https://learn.microsoft.com/ja-jp/mem/intune/fundamentals/whats-new Microsoft Intune の新機能を発見するPublished Date : 2023年2月7日
Audit log activities - Microsoft Purview (compliance)
https://learn.microsoft.com/ja-jp/microsoft-365/compliance/audit-log-activities 統合監査ログを使用して、Microsoft 365 組織内のユーザーと管理者のアクティビティを表示します。Published Date : 2023年2月7日
コミュニケーション コンプライアンスの使用を開始する - Microsoft Purview (compliance)
https://learn.microsoft.com/ja-jp/microsoft-365/compliance/communication-compliance-configure コミュニケーション コンプライアンス ポリシーを設定して、レビュー用にユーザー コミュニケーションを構成します。Published Date : 2023年2月7日
秘密度ラベルの概要 - Microsoft Purview (compliance)
https://learn.microsoft.com/ja-jp/microsoft-365/compliance/get-started-with-sensitivity-labels 管理者、ライセンス要件、および機密ラベルを使用して組織のデータを保護する一般的なシナリオの規範的な手順。Published Date : 2023年2月7日
よく寄せられる質問をMicrosoft Defender for Businessする
https://learn.microsoft.com/ja-jp/microsoft-365/security/defender-business/mdb-faq 中小企業向けのサイバーセキュリティ ソリューションである Defender for Business に関する質問に対する回答を取得します。Published Date : 2023年2月7日
Windows サーバーを Microsoft Defender for Endpoint にオンボードします
https://learn.microsoft.com/ja-jp/microsoft-365/security/defender-endpoint/configure-server-endpoints Microsoft Defender for Endpoint センサーにセンサー データを送信できるように、Windows サーバーをオンボードします。Published Date : 2023年2月7日
学校データ同期の計画チェックリスト - School Data Sync
https://learn.microsoft.com/ja-jp/schooldatasync/planning-checklist Microsoft 学校データ同期 (SDS) の展開計画Published Date : 2023年2月7日
新しいデバイスの手動登録
https://learn.microsoft.com/ja-jp/managed-desktop/prepare/manual-registration Microsoft Managed Desktop で管理するデバイスを登録するPublished Date : 2023年2月7日
既存のデバイスの手動登録
https://learn.microsoft.com/ja-jp/managed-desktop/prepare/manual-registration-existing-devices 既存のデバイスを Microsoft Managed Desktop で管理できるように登録するPublished Date : 2023年2月7日
Microsoft エンドポイント マネージャー ポータルからの Windows Autopilot 登録
https://learn.microsoft.com/ja-jp/managed-desktop/prepare/windows-autopilot-registration この記事では、Microsoft エンドポイント マネージャー ポータルで Windows Autopilot 展開プロファイルを使用してデバイスを登録する方法について説明しますPublished Date : 2023年2月7日
印刷リソースを準備する
https://learn.microsoft.com/ja-jp/managed-desktop/prepare/printing 印刷がスムーズに行われるための重要な手順Published Date : 2023年2月7日