Skip to content

Commit 31e75cc

Browse files
Merge pull request #10479 from MicrosoftDocs/learn-build-service-prodbot/docutune-autopr-20260108-225327-7531663-ignore-build
AB#9111: [BULK] [Bundle-Security] - Scheduled execution to fix known issues (part 7)
2 parents 1ee9850 + e601b12 commit 31e75cc

9 files changed

Lines changed: 21 additions & 21 deletions

File tree

support/power-platform/dataverse/working-with-solutions/error-importing-savedquery-in-dynamics-365.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ For Saved Query the managed component can be found with a Web API query and then
4747

4848
Example:
4949

50-
`https://MyOrganization.crm11.dynamics.com/api/data/v9.1/savedqueries?$filter=savedqueryid eq '1d0f4d57-6d49-e911-a98d-00224800ce20'`
50+
`https://MyOrganization.crm11.dynamics.com/api/data/v9.1/savedqueries?$filter=savedqueryid eq 'aaaabbbb-0000-cccc-1111-dddd2222eeee'`
5151

5252
This is the output:
5353

@@ -59,7 +59,7 @@ For Saved Query the managed component can be found with a Web API query and then
5959
"layoutxml": "<grid name=\"resultset\" icon=\"1\" preview=\"1\" select=\"1\" jump=\"css_name\"
6060
object=\"10224\"><row id=\"css_testsqparentid\" name=\"result\"><cell name=\"css_name\" width=\"150\" />
6161
<cell name=\"css_testsqfield\" width=\"100\" /></row></grid>",
62-
"savedqueryid": "1d0f4d57-6d49-e911-a98d-00224800ce20",
62+
"savedqueryid": "aaaabbbb-0000-cccc-1111-dddd2222eeee",
6363
"description": "View to trigger 8004F016 named ",
6464
"createdon": "DateTime",
6565
"savedqueryidunique": "bdab33b7-18d0-45d6-9db9-6111afc1e444",

support/power-platform/power-apps/connections/troubleshoot-power-query-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ As an alternative, the tenant administrator can give consent to Power Query with
4141
1. Install [Azure PowerShell](/powershell/azure/install-az-ps).
4242
2. Run the following PowerShell commands:
4343
* `Login-AzureRmAccount` (and sign in as the tenant admin)
44-
* `New-AzureRmADServicePrincipal -ApplicationId f3b07414-6bf4-46e6-b63f-56941f3f4128`
44+
* `New-AzureRmADServicePrincipal -ApplicationId 00001111-aaaa-2222-bbbb-3333cccc4444`
4545

4646
The advantage of this approach (versus the tenant-wide solution) is that this solution is very targeted. It provisions only the **Power Query** service principal, but no other permission changes are made to the tenant.
4747

support/power-platform/power-apps/create-and-use-apps/troubleshoot-model-driven-app-date-time-issues.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ The table and column names used are [logical names](/power-apps/developer/data-p
5252
> [!TIP]
5353
> An easy way to find the ID of a row is to open it in a model-driven app. The ID can be found in the page URL.
5454
55-
The following example gets the `scheduledstart` column of the `appointment` table for the row with ID `d2862246-4763-ee11-8def-000d3a34118b`.
55+
The following example gets the `scheduledstart` column of the `appointment` table for the row with ID `aaaabbbb-0000-cccc-1111-dddd2222eeee`.
5656

5757
```http
58-
https://myorg.crm.dynamics.com/api/data/v9.2/appointments(d2862246-4763-ee11-8def-000d3a34118b)?$select=scheduledstart
58+
https://myorg.crm.dynamics.com/api/data/v9.2/appointments(aaaabbbb-0000-cccc-1111-dddd2222eeee)?$select=scheduledstart
5959
```
6060

6161
Entering this in the browser address bar will show something like the following:
@@ -65,7 +65,7 @@ Entering this in the browser address bar will show something like the following:
6565
"@odata.context": "https://myorg.crm.dynamics.com/api/data/v9.2/$metadata#appointments(scheduledstart)/$entity",
6666
"@odata.etag": "W/\"11472725\"",
6767
"scheduledstart": "2023-10-15T07:30:00Z",
68-
"activityid": "d2862246-4763-ee11-8def-000d3a34118b"
68+
"activityid": "aaaabbbb-0000-cccc-1111-dddd2222eeee"
6969
}
7070
```
7171

@@ -92,7 +92,7 @@ This is likely an issue. Before reporting it, you can isolate whether it's a ser
9292
For example,
9393

9494
```http
95-
GET https://myorg.crm.dynamics.com/api/data/v9.2/appointments(d2862246-4763-ee11-8def-000d3a34118b)?$select=scheduledstart
95+
GET https://myorg.crm.dynamics.com/api/data/v9.2/appointments(aaaabbbb-0000-cccc-1111-dddd2222eeee)?$select=scheduledstart
9696
Accept: application/json
9797
OData-MaxVersion: 4.0
9898
OData-Version: 4.0

support/sql/database-engine/connect/ssl-errors-after-tls-1-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To resolve these errors, follow these steps:
5252

5353
- If no certificate exists, examine the SQL Server error log file to get the hash code. You might see one of the following entries:
5454

55-
`2023-05-30 14:59:30.89 spid15s The certificate [Cert Hash(sha1) "B3029394BB92AA8EDA0B8E37BAD09345B4992E3D"] was successfully loaded for encryption.`
55+
`2023-05-30 14:59:30.89 spid15s The certificate [Cert Hash(sha1) "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00"] was successfully loaded for encryption.`
5656
or
5757
`2023-05-19 04:58:56.42 spid11s A self-generated certificate was successfully loaded for encryption.`
5858
If the certificate is self-generated, skip to step 2.

support/sql/database-engine/connect/tls-exist-connection-closed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To resolve the issue, follow these steps:
9191
1. Select the **Certificate** tab and follow the relevant step:
9292
- If a certificate is displayed, select **View** to examine the Thumbprint algorithm to confirm whether it's using a weak-hash algorithm. Then, select **Clear** and go to step 4.
9393
- If a certificate isn't displayed, review the SQL Server error log for an entry that resembles the following and note down the hash or thumbprint value:
94-
`2017-05-30 14:59:30.89 spid15s The certificate [Cert Hash(sha1) "B3029394BB92AA8EDA0B8E37BAD09345B4992E3D"] was successfully loaded for encryption`
94+
`2017-05-30 14:59:30.89 spid15s The certificate [Cert Hash(sha1) "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00"] was successfully loaded for encryption`
9595
1. Use the following steps to remove server authentication:
9696
1. Select **Start** > **Run**, and type *MMC*. (MMC also known as the Microsoft Management Console.)
9797
1. In MMC, open the certificates and select **Computer Account** in the **Certificates** snap-in screen.

support/system-center/dpm/remove-dpmdb-vmware-protection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ms.reviewer: Mjacquet, v-jysur; jarrettr; sudesai, v-six
1212
```sql
1313
SET XACT_ABORT ON
1414
BEGIN TRANSACTION
15-
IF EXISTS( SELECT Ds.DataSourceID FROM tbl_IM_DataSource Ds JOIN tbl_PRM_LogicalReplica Lr ON Ds.DataSourceId = Lr.DataSourceId WHERE Ds.AppId = '18BEE66C-826F-4499-A663-9805C8688AD3')
15+
IF EXISTS( SELECT Ds.DataSourceID FROM tbl_IM_DataSource Ds JOIN tbl_PRM_LogicalReplica Lr ON Ds.DataSourceId = Lr.DataSourceId WHERE Ds.AppId = '00001111-aaaa-2222-bbbb-3333cccc4444')
1616
PRINT 'VMware DataSource in Active/Inactive protected state'
17-
ELSE IF EXISTS ( SELECT DataSourceID FROM tbl_IM_DataSource WHERE CloudProtectionStatus!=0 AND AppId='18BEE66C-826F-4499-A663-9805C8688AD3')
17+
ELSE IF EXISTS ( SELECT DataSourceID FROM tbl_IM_DataSource WHERE CloudProtectionStatus!=0 AND AppId='00001111-aaaa-2222-bbbb-3333cccc4444')
1818
PRINT 'VMware DataSource in Cloud are Active/Inactive protected state'
1919
ELSE
2020
PRINT 'All VMware datasource protections are removed'
@@ -102,7 +102,7 @@ ELSE
102102
END
103103
DROP TABLE #serverIdTable3
104104

105-
SELECT DatasourceID INTO #datasourceIdTable2 FROM dbo.tbl_IM_DataSource WHERE AppId='18BEE66C-826F-4499-A663-9805C8688AD3'
105+
SELECT DatasourceID INTO #datasourceIdTable2 FROM dbo.tbl_IM_DataSource WHERE AppId='00001111-aaaa-2222-bbbb-3333cccc4444'
106106
DECLARE @datasourceId2 nvarchar(100)
107107
WHILE exists ( SELECT * FROM #datasourceIdTable2 )
108108
BEGIN
@@ -114,7 +114,7 @@ ELSE
114114
END
115115
DROP TABLE #datasourceIdTable2
116116

117-
Delete from tbl_IM_DataSource where AppId='18BEE66C-826F-4499-A663-9805C8688AD3'
117+
Delete from tbl_IM_DataSource where AppId='00001111-aaaa-2222-bbbb-3333cccc4444'
118118

119119
COMMIT;
120120
```

support/system-center/scom/regular-expression-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ You can use comparison operators when you construct a criteria expression. The v
129129
|MATCHES|Evaluates to **true** if the left operand matches the regular expression defined by the right operand.| `Name MATCHES 'SQL*05'`<br/> Evaluates to **true** if the `Name` value is **SQL2005**. |
130130
|IS NULL|Evaluates to **true** if the value of the left operand is null.| `ConnectorId IS NULL`<br/> Evaluates to **true** if the `ConnectorId` property doesn't contain a value. |
131131
|IS NOT NULL|Evaluates to **true** if the value of the left operand isn't null.| `ConnectorId IS NOT NULL`<br/> Evaluates to **true** if the `ConnectorId` property contains a value. |
132-
|IN|Evaluates to **true** if the value of the left operand is in the list of values defined by the right operand.<br/><br/>**Note** The **IN** operator is valid for use only with properties of type [Guid](/dotnet/api/system.guid).|`Id IN ('080F192C-52D2-423D-8953-B3EC8C3CD001', '080F192C-53B2-403D-8753-B3EC8C3CD002')`<br/>Evaluates to **true** if the value of the `Id` property is one of the two globally unique identifiers provided in the expression. |
132+
|IN|Evaluates to **true** if the value of the left operand is in the list of values defined by the right operand.<br/><br/>**Note** The **IN** operator is valid for use only with properties of type [Guid](/dotnet/api/system.guid).|`Id IN ('aaaabbbb-0000-cccc-1111-dddd2222eeee', 'bbbbcccc-1111-dddd-2222-eeee3333ffff')`<br/>Evaluates to **true** if the value of the `Id` property is one of the two globally unique identifiers provided in the expression. |
133133
|AND|Evaluates to **true** if the left and right operands are both true.|`Name = 'SQL%' AND Description LIKE 'MyData%'` |
134134
|OR|Evaluates to **true** if either the left or right operand is true.|`Name = 'SQL%' OR Description LIKE 'MyData%'` |
135135
|NOT|Evaluates to **true** if the right operand isn't true.|`NOT (Name = 'IIS' OR Name = 'SQL')` |

support/system-center/vmm/delete-wap-users-subscriptions-errors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ In the following screenshot, two bindings exist. The second entry for HTTPS 8090
4343

4444
Debug logging may show errors that resemble the following:
4545

46-
> 2 [0]0D2C.0754::‎2015‎-‎03‎-‎27 15:09:21.042 [ActivityEventSource]Started activity [HttpRequestActivity, id {8ab952bd-c43f-4ded-b173-50d4055f9341}] parent activity [WebAuthentication Call, id {4659b10b-cf3a-4bcc-9769-f6e1b8663fe5}] Elapsed: 0ms Context: {c477a2fb-8864-4d89-96c7-24bdccee5b94} Properties: RequestUrl=[https://wapserver.contoso.local:8090/provider/subscriptions] & x-ms-client-request-id=[e8dbc04c-5381-40ba-8909-69b83a4f3f13] & x-ms-client-session-id=[99459df3-bb71-4f30-9315-1b0c6c916a58]
46+
> 2 [0]0D2C.0754::‎2015‎-‎03‎-‎27 15:09:21.042 [ActivityEventSource]Started activity [HttpRequestActivity, id {8ab952bd-c43f-4ded-b173-50d4055f9341}] parent activity [WebAuthentication Call, id {4659b10b-cf3a-4bcc-9769-f6e1b8663fe5}] Elapsed: 0ms Context: {c477a2fb-8864-4d89-96c7-24bdccee5b94} Properties: RequestUrl=[https://wapserver.contoso.local:8090/provider/subscriptions] & x-ms-client-request-id=[aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e] & x-ms-client-session-id=[bbbb1b1b-cc2c-dd3d-ee4e-ffffff5f5f5f]
4747
48-
> 3 [0]0D2C.0754::‎2015‎-‎03‎-‎27 15:09:21.058 [ActivityEventSource]Successfully completed activity [HttpRequestActivity, id {8ab952bd-c43f-4ded-b173-50d4055f9341}] parent activity [WebAuthentication Call, id {4659b10b-cf3a-4bcc-9769-f6e1b8663fe5}] Elapsed: 0ms Context: {c477a2fb-8864-4d89-96c7-24bdccee5b94} Duration: 124ms Properties: OriginalPath=[/provider/subscriptions] & RequestUrl=[https://wapserver.contoso.local:8090/provider/subscriptions] & SubscriptionId=[] & x-ms-client-request-id=[e8dbc04c-5381-40ba-8909-69b83a4f3f13] & x-ms-client-session-id=[99459df3-bb71-4f30-9315-1b0c6c916a58]
48+
> 3 [0]0D2C.0754::‎2015‎-‎03‎-‎27 15:09:21.058 [ActivityEventSource]Successfully completed activity [HttpRequestActivity, id {8ab952bd-c43f-4ded-b173-50d4055f9341}] parent activity [WebAuthentication Call, id {4659b10b-cf3a-4bcc-9769-f6e1b8663fe5}] Elapsed: 0ms Context: {c477a2fb-8864-4d89-96c7-24bdccee5b94} Duration: 124ms Properties: OriginalPath=[/provider/subscriptions] & RequestUrl=[https://wapserver.contoso.local:8090/provider/subscriptions] & SubscriptionId=[] & x-ms-client-request-id=[aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e] & x-ms-client-session-id=[bbbb1b1b-cc2c-dd3d-ee4e-ffffff5f5f5f]
4949
5050
> 4 [1]0D2C.0754::‎2015‎-‎03‎-‎27 15:09:24.406 [Microsoft-ServiceProviderFoundation]Component: Provider Activity [WebAuthentication Call, id {4659b10b-cf3a-4bcc-9769-f6e1b8663fe5}] Parent activity [none, id {00000000-0000-0000-0000-000000000000}] Elapsed: 0ms Context: {c477a2fb-8864-4d89-96c7-24bdccee5b94} Creating Tenant and linking to stamp TenantName: [email protected]_a7c63b17-c0fb-48bf-bdc4-5f7db1c2610b
5151

support/system-center/vmm/reserved-characters-cause-vmm-crash.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Do not use any folder or share that contains reserved characters.
2727

2828
A carmine trace will show an error similar to the following. Note the name of the share in the top line:
2929

30-
> 00000035 4.64445496 [5600] 15E0.1740::07/29-02:36:09.104#14:ImgLibTask.cs(814): Start adding Library Share \\\\\<servername>\\???|TaskID=9C23BAC8-CB92-46A8-BFC4-E16889A25936
31-
> 00000036 4.70877552 [5600] 15E0.1740::07/29-02:36:09.167#19:Auditor.cs(224): Auditor: Committing audit record changes Count=1.|TaskID=9C23BAC8-CB92-46A8-BFC4-E16889A25936
32-
> 00000037 4.71668673 [5600] 15E0.1740::07/29-02:36:09.175#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_TR_Task_GetUserRolesForTask, ObjectID: 9c23bac8-cb92-46a8-bfc4-e16889a25936
33-
> 00000038 4.71875620 [5600] 15E0.1740::07/29-02:36:09.178#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_IL_GetUserRolesForLibraryShareID, ObjectID: ec3cf570-7547-4957-a51d-dae9b142cf7f
34-
> 00000039 4.72142792 [5600] 15E0.1740::07/29-02:36:09.180#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_IL_GetUserRolesForLibraryShareID, ObjectID: ec3cf570-7547-4957-a51d-dae9b142cf7f
30+
> 00000035 4.64445496 [5600] 15E0.1740::07/29-02:36:09.104#14:ImgLibTask.cs(814): Start adding Library Share \\\\\<servername>\\???|TaskID=aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb
31+
> 00000036 4.70877552 [5600] 15E0.1740::07/29-02:36:09.167#19:Auditor.cs(224): Auditor: Committing audit record changes Count=1.|TaskID=aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb
32+
> 00000037 4.71668673 [5600] 15E0.1740::07/29-02:36:09.175#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_TR_Task_GetUserRolesForTask, ObjectID: aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb
33+
> 00000038 4.71875620 [5600] 15E0.1740::07/29-02:36:09.178#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_IL_GetUserRolesForLibraryShareID, ObjectID: bbbbbbbb-1111-2222-3333-cccccccccccc
34+
> 00000039 4.72142792 [5600] 15E0.1740::07/29-02:36:09.180#20:UserRoleAuthorizationHelper.cs(113): Get: Running GetAssociatedUR SP prc_IL_GetUserRolesForLibraryShareID, ObjectID: bbbbbbbb-1111-2222-3333-cccccccccccc
3535
> 00000040 6.41748762 [5600] 15E0.1740::07/29-02:36:10.867#04:WsmanAPIWrapper.cs(2752): Retrieving underlying WMI error to throw. Got string "<f:WSManFault xmlns:f="http://schemas.microsoft.com/wbem/wsman/1/wsmanfault" Code="2150859010" Machine="servername"><f:Message><f:ProviderFault provider="WMI Provider" path="%systemroot%\system32\WsmWmiPl.dll"><f:WSManFault xmlns:f="http://schemas.microsoft.com/wbem/wsman/1/wsmanfault" Code="2150859010" Machine="DCMRRXP16N24.dcmanager.lab"><f:Message>The WS-Management service cannot process the request. The WMI service reported that the WMI provider could not perform the requested operation. </f:Message></f:WSManFault><f:ExtendedError><p:__ExtendedStatus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://schemas.microsoft.com/wbem/wsman/1/wmi/root/wmi/__ExtendedStatus" xmlns:cim="http://schemas.dmtf.org/wbem/wscim/1/common" xsi:type="p:__ExtendedStatus_Type"><p:Description>WDM specific return code: 4200
3636
> 00000041 6.41748762 [5600] </p:Description><p:Operation>ExecQuery</p:Operation><p:ParameterInfo>select * from MSFC_FCAdapterHBAAttributes</p:ParameterInfo><p:ProviderName>WinMgmt</p:ProviderName><p:StatusCode xsi:nil="true"/></p:__ExtendedStatus></f:ExtendedError></f:ProviderFault></f:Message></f:WSManFault>"
3737
> 00000042 6.41825581 [5600] 15E0.1740::07/29-02:36:10.868#04:WsmanAPIWrapper.cs(2752): System.Runtime.InteropServices.COMException (0x80338102): The WS-Management service cannot process the request. The WMI service reported that the WMI provider could not perform the requested operation.

0 commit comments

Comments
 (0)