<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:g-custom="http://base.google.com/cns/1.0" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
  <channel>
    <title>kaglbm5adll8f8z3</title>
    <link>https://www.adelaidecomputerandtvrepairs.com</link>
    <description />
    <atom:link href="https://www.adelaidecomputerandtvrepairs.com/feed/rss2" type="application/rss+xml" rel="self" />
    <item>
      <title>Get list of Devices from Azure AD, with Filter.</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/get-list-of-devices-from-azure-ad-with-filter</link>
      <description>Hi Everyone, Here is another simple script once again for you, to list devices from Azure AD with a filter on Display Name. I want the list of devices where their names start with EWR or for that matter it can be anything else, depending on your requirement. Please make sure that Azure AD PowerShell module is installed before running this script. I am getting four things in the results. DeviceType, AccountEnabled, Operating System and Display Name. Connect-AzureAD Write-Output "List of Devices f</description>
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Hi Everyone,
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Here is another simple script once again for you, to list devices from Azure AD with a filter on Display Name.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           I want the list of devices where their names start with EWR or for that matter it can be anything else, depending on your requirement. Please make sure that Azure AD PowerShell module is installed before running this script.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           I am getting four things in the results. DeviceType, AccountEnabled, Operating System and Display Name.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Connect-AzureAD 
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Write-Output "List of Devices from Azure AD"
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Write-Output ""
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Write-Output "Device --- Enabled --- Device OS --- Displayname"
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           $FormatEnumerationLimit = -1
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           $meetingroomsample = "ewr*"
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           $develist =Get-AzureADDevice -All $true | where displayname -Like "$meetingroomsample"
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           foreach ($device in $devicelist)
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           {
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Write-Output ( $device.objecttype + "`t--- " + $device.accountenabled + "`t --- " + $device.deviceostype + "`t --- " + $device.displayname )
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           }
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Output generated like this:
           &#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_3760c50be6b74a47a9b4a5ce9f4b7d4b_mv2.webp" alt="Get list of Devices from Azure AD, with Filte – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs" title="Get list of Devices from Azure AD, with Filte – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs"/&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <enclosure url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_3760c50be6b74a47a9b4a5ce9f4b7d4b_mv2.webp" length="64650" type="image/webp" />
      <pubDate>Tue, 14 Jun 2022 18:33:44 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/get-list-of-devices-from-azure-ad-with-filter</guid>
      <g-custom:tags type="string" />
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_3760c50be6b74a47a9b4a5ce9f4b7d4b_mv2.webp">
        <media:description>thumbnail</media:description>
      </media:content>
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_3760c50be6b74a47a9b4a5ce9f4b7d4b_mv2.webp">
        <media:description>main image</media:description>
      </media:content>
    </item>
    <item>
      <title>Kusto (Azure Log Analytics) Query time zone formatting</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/kusto-azure-log-analytics-query-time-zone-formatting</link>
      <description>Hi Everyone, Here is another simple script once again for you, to list devices from Azure AD with a filter on Display Name. I want the list of devices where their names start with EWR or for that matter it can be anything else, depending on your requirement. Please make sure that Azure AD PowerShell module is installed before running this script. I am getting four things in the results. DeviceType, AccountEnabled, Operating System and Display Name. Connect-AzureAD Write-Output "List of Devices f</description>
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           When writing a Kusto query, time zone is UTC by default.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           If you want a time zone of your choice, you can use "totimespan"
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Example: I am checking here for Windows updates. I am using custom column names. So, you can refer to those examples too if you like.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Sample code:
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           In this case I have used 9:30 hours. You can change it as per your time zone difference from UTC.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           let timediff = totimespan("09:30");
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           UpdateSummary 
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           | where TimeGenerated &amp;gt; ago(2h) 
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           | summarize
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           ['Critical Updates Missing'] = sum(CriticalUpdatesMissing),
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           ['Security Updates Missing'] = sum(SecurityUpdatesMissing)
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           by Computer = Computer, RestartPending, ['Time Generated'] = TimeGenerated + timediff
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Results will be like :
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_efff23d484d44d88be21c1c24ed282be_mv2.webp" alt="Analytics – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs" title="Analytics – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs"/&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Time Generated column still shows [UTC] in square brackets but it is just for display. Actual time zone is now what you wanted it to display.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <enclosure url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_efff23d484d44d88be21c1c24ed282be_mv2.webp" length="10426" type="image/webp" />
      <pubDate>Tue, 14 Jun 2022 18:33:43 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/kusto-azure-log-analytics-query-time-zone-formatting</guid>
      <g-custom:tags type="string" />
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_efff23d484d44d88be21c1c24ed282be_mv2.webp">
        <media:description>thumbnail</media:description>
      </media:content>
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_efff23d484d44d88be21c1c24ed282be_mv2.webp">
        <media:description>main image</media:description>
      </media:content>
    </item>
    <item>
      <title>PowerShell script to run SLMGR on remote computers</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/powershell-script-to-run-slmgr-on-remote-computers</link>
      <description />
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Simple powershell script to run on remote computers to update the product Key.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           This will be handy for administrators who want to convert multiple Windows pro computers to Enterprise version.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Open PowerShell in administrator mode and run the following script.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           If the target computer names are stored in computers.txt under Temp directory of C Drive.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           $computers = "C:\Temp\computers.txt"
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           $computers | %{
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           # Edit the following command with the appropriate product key
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Invoke-Command -ComputerName $_ -ScriptBlock { slmgr /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx}
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           }:
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <pubDate>Tue, 14 Jun 2022 18:33:42 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/powershell-script-to-run-slmgr-on-remote-computers</guid>
      <g-custom:tags type="string" />
    </item>
    <item>
      <title>Simple powershell script to see status of users in Active Directory</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/simple-powershell-script-to-see-status-of-users-in-active-directory</link>
      <description />
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Assuming that you have few usernames in the adusers.txt file under the Temp folder in your C Drive.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Following script should get the information you need and put it in a CSV file under the temp folder.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;br/&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Feel free to change the path as per your liking.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;span&gt;&#xD;
        
            ﻿
           &#xD;
      &lt;/span&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Get-Content -Path C:\Temp\adusers.txt | foreach {
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Get-ADUser -LDAPFilter "(samaccountname=$_)" | Select-Object -Property samaccountname, enabled
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           } | Out-File C:\Temp\aduserstatus.csv
           &#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <pubDate>Tue, 14 Jun 2022 18:33:41 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/simple-powershell-script-to-see-status-of-users-in-active-directory</guid>
      <g-custom:tags type="string" />
    </item>
    <item>
      <title>Touch keyboard not working on Tablet after updating to Windows 10 1709</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/touch-keyboard-not-working-on-tablet-after-updating-to-windows-10-1709</link>
      <description />
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Yesterday, I was working on a Dell Tablet for one of the users where I found the Touch keyboard button was not working. Whenever someone clicked on the Touch keyboard button (located in the task bar in Windows 10), it would not do anything.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           I looked for the service named "Touch Keyboard and Handwriting Panel Service" and that was running. Someone suggested to restart the service and I did that. But that didn't fix the issue. Touch keyboard was still not working. Strangely though, it would work in one of the admin accounts on our network.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Next thing I checked was the event viewer where I found some errors in Applocker events. Package named "InputApp" was getting blocked by Applocker. We excluded InputApp from Applocker, updated policies on the impacted device and restarted it. Touch keyboard started working just fine after the restart. No more errors in the event viewer too.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;span&gt;&#xD;
        
            ﻿
           &#xD;
      &lt;/span&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           #computersDellTablet #Touchkeyboard
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <pubDate>Tue, 14 Jun 2022 18:33:40 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/touch-keyboard-not-working-on-tablet-after-updating-to-windows-10-1709</guid>
      <g-custom:tags type="string" />
    </item>
    <item>
      <title>How to delete voice data when using Cortana from the Microsoft servers</title>
      <link>https://www.adelaidecomputerandtvrepairs.com/how-to-delete-voice-data-when-using-cortana-from-the-microsoft-servers</link>
      <description />
      <content:encoded>&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           StartFragment
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           If you must delete one or all the voice data when using Cortana from the Microsoft servers, use these steps:
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;span&gt;&#xD;
        
            ﻿
           &#xD;
      &lt;/span&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_1ddfdafb91fa4a72a4cef49a87f4fe32_mv2.webp" alt="Start Fragment – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs" title="Start Fragment – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs"/&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_20e9b825619844eabcdd7c0b959ac5e4_mv2.webp" alt="Privacy Dashboard – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs" title="Privacy Dashboard – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs"/&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;ol&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             Open Settings. 
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             Click on Accounts. 
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             Click on Your info. 
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        
            Click the Manage my Microsoft account link.
           &#xD;
      &lt;/span&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             ﻿
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
  &lt;/ol&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;ol&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             In your Microsoft account online, click the Privacy tab. 
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;span&gt;&#xD;
          
             If prompted, sign-in again using your Microsoft account information. 
            &#xD;
        &lt;/span&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        
            In the "Privacy dashboard" page, click the Activity history tab.
           &#xD;
      &lt;/span&gt;&#xD;
      &lt;span&gt;&#xD;
        &lt;br/&gt;&#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
  &lt;/ol&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;ol&gt;&#xD;
    &lt;li&gt;&#xD;
      &lt;span&gt;&#xD;
        
            Under "Explore your data," click on Voice. 
           &#xD;
      &lt;/span&gt;&#xD;
    &lt;/li&gt;&#xD;
  &lt;/ol&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           In this section, you'll find a chronological list of every voice recording that has been collected every time you use Cortana on your computer, phone, and Xbox. If you want to delete all your voice recording data from the Microsoft servers, click the Clear activity option on the top-right corner. You can also click the play button to review each piece of data and click the Delete option to remove recordings individually.
          &#xD;
    &lt;/span&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;br/&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_c60a6b348cf645c08a864e47c037c245_mv2.webp" alt="Step by Step – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs" title="Step by Step – Adelaide, South Australia - Adelaide Cheap TV &amp;amp; Video Repairs"/&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           Once you've completed the steps, you voice data will be removed from the Microsoft servers, but your devices will continue to upload future recording to your Microsoft account.
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      &lt;span&gt;&#xD;
        
            ﻿
           &#xD;
      &lt;/span&gt;&#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;span&gt;&#xD;
      
           EndFragment
          &#xD;
    &lt;/span&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <enclosure url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_1ddfdafb91fa4a72a4cef49a87f4fe32_mv2.webp" length="41260" type="image/webp" />
      <pubDate>Tue, 14 Jun 2022 18:33:39 GMT</pubDate>
      <guid>https://www.adelaidecomputerandtvrepairs.com/how-to-delete-voice-data-when-using-cortana-from-the-microsoft-servers</guid>
      <g-custom:tags type="string" />
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_1ddfdafb91fa4a72a4cef49a87f4fe32_mv2.webp">
        <media:description>thumbnail</media:description>
      </media:content>
      <media:content medium="image" url="https://irp.cdn-website.com/5f4b3f4e/dms3rep/multi/960928_1ddfdafb91fa4a72a4cef49a87f4fe32_mv2.webp">
        <media:description>main image</media:description>
      </media:content>
    </item>
  </channel>
</rss>
