Skip to content

Commit 2087e66

Browse files
authored
Merge pull request #5750 from Microsoft/FromPublicRepo
From public repo
2 parents d1c65fa + f4522cf commit 2087e66

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

articles/active-directory/active-directory-conditional-access-automatic-device-registration-faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ For more details, see the [Get-MsolDevice](https://docs.microsoft.com/en-us/powe
5353
**Q: Why is a device I have deleted in the Azure portal or using Windows PowerShell still listed as registered?**
5454

5555
**A:** This is by design. The device will not have access to resources in the cloud.
56-
If you want to re-register the device, a manual action needs to be taken on the device.
56+
If you want to remove the device and register again, a manual action must be to be taken on the device.
5757

5858
For Windows 10 and Windows Server 2016 that are on-premises AD domain-joined:
5959

6060
1. Open the command prompt as an administrator.
6161

62-
2. Type **dsregcmd.exe /leave**.
62+
2. Type **dsregcmd.exe /debug /leave**
6363

64-
3. Type **dsregcmd.exe**.
64+
3. **Sign Out and Sign In to trigger the scheduled task that registers the device again.**
6565

6666
For other Windows platforms that are on-premises AD domain-joined:
6767

articles/app-service-web/app-service-web-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can complete the task using one of the following CLI versions:
5454
## Deploy a web app
5555
Let's deploy a web app to Azure App Service.
5656

57-
1. Open a new Windows command prompt, PowerShell window, Linux shell, or OS X terminal. Run `git --version` and `azure --version` to verify that Git and Azure CLI
57+
1. Open a new Windows command prompt, PowerShell window, Linux shell, or OS X terminal. Run `git --version` and `az --version` to verify that Git and Azure CLI
5858
are installed on your machine.
5959

6060
![Test installation of CLI tools for your first web app in Azure](./media/app-service-web-get-started/1-test-tools-2.0.png)

articles/application-insights/app-insights-powershell-alerts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ The same rule can be used for the metric reported by using the [measurement para
105105
| `clientPerformance.total.value` |Browser page load time |Time from user request until DOM, stylesheets, scripts and images are loaded. |
106106
| `performanceCounter.available_bytes.value` |Available memory |Physical memory immediately available for a process or for system use. |
107107
| `performanceCounter.io_data_bytes_per_sec.value` |Process IO Rate |Total bytes per second read and written to files, network and devices. |
108-
| `performanceCounter.number_of_exceps_thrown_per_sec` |exception rate |Exceptions thrown per second. |
108+
| `performanceCounter.number_of_exceps_thrown_per_sec.value` |exception rate |Exceptions thrown per second. |
109109
| `performanceCounter.percentage_processor_time.value` |Process CPU |The percentage of elapsed time of all process threads used by the processor to execution instructions for the applications process. |
110110
| `performanceCounter.percentage_processor_total.value` |Processor time |The percentage of time that the processor spends in non-Idle threads. |
111111
| `performanceCounter.process_private_bytes.value` |Process private bytes |Memory exclusively assigned to the monitored application's processes. |
112112
| `performanceCounter.request_execution_time.value` |ASP.NET request execution time |Execution time of the most recent request. |
113113
| `performanceCounter.requests_in_application_queue.value` |ASP.NET requests in execution queue |Length of the application request queue. |
114-
| `performanceCounter.requests_per_sec` |ASP.NET request rate |Rate of all requests to the application per second from ASP.NET. |
114+
| `performanceCounter.requests_per_sec.value` |ASP.NET request rate |Rate of all requests to the application per second from ASP.NET. |
115115
| `remoteDependencyFailed.durationMetric.count` |Dependency failures |Count of failed calls made by the server application to external resources. |
116116
| `request.duration` |Server response time |Time between receiving an HTTP request and finishing sending the response. |
117117
| `request.rate` |Request rate |Rate of all requests to the application per second. |

articles/container-service/container-service-connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This command downloads the cluster credentials to `$HOME/.kube/config`, where `k
7777
Alternatively, you can use `scp` to securely copy the file from `$HOME/.kube/config` on the master VM to your local machine. For example:
7878

7979
```console
80-
mkdir $HOME/.kube/config
80+
mkdir $HOME/.kube
8181
scp azureuser@<master-dns-name>:.kube/config $HOME/.kube/config
8282
```
8383

articles/iot-hub/iot-hub-device-sdk-c-serializer.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,13 @@ For example, to invoke **SetAirResistance** you can send this message to a devic
523523

524524
The action name must exactly match an action defined in your model. The parameter names must match as well. Also note case sensitivity. **Name** and **Parameters** are always uppercase. Make sure to match the case of your action name and parameters in your model. In this example, the action name is "SetAirResistance" and not "setairresistance".
525525

526+
The two other actions **TurnFanOn** and **TurnFanOff** can be invoked by sending these messages to a device:
527+
528+
```
529+
{"Name" : "TurnFanOn", "Parameters" : {}}
530+
{"Name" : "TurnFanOff", "Parameters" : {}}
531+
```
532+
526533
This section described everything you need to know when sending events and receiving messages with the **serializer** library. Before moving on, let's cover some parameters you can configure that control how large your model is.
527534

528535
## Macro configuration

0 commit comments

Comments
 (0)