<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://dfwlpiki.dfwlp.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://dfwlpiki.dfwlp.com/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages</id>
		<title>DFWLPiki - New pages [en]</title>
		<link rel="self" type="application/atom+xml" href="https://dfwlpiki.dfwlp.com/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages"/>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/Special:NewPages"/>
		<updated>2026-04-06T17:27:11Z</updated>
		<subtitle>From DFWLPiki</subtitle>
		<generator>MediaWiki 1.23.15</generator>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/AzureAD_Powershell_Install</id>
		<title>AzureAD Powershell Install</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/AzureAD_Powershell_Install"/>
				<updated>2022-01-06T17:39:18Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: Created page with &amp;quot;Category:Azure  Install-ModuleAzureAD   Connect-AzureAD -TenantId id-from-portal&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Azure]]&lt;br /&gt;
 Install-ModuleAzureAD&lt;br /&gt;
&lt;br /&gt;
 Connect-AzureAD -TenantId id-from-portal&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/AzureAD_Set_User_Password_Expiration</id>
		<title>AzureAD Set User Password Expiration</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/AzureAD_Set_User_Password_Expiration"/>
				<updated>2022-01-06T17:38:19Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Azure]]&lt;br /&gt;
 Get-AzureADUser -ObjectId UPN | Select-Object UserprincipalName,@{N=&amp;quot;PasswordNeverExpires&amp;quot;;E={$_.PasswordPolicies -contains &amp;quot;DisablePasswordExpiration&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
 Set-AzureADUser -ObjectId UPN -PasswordPolicies DisablePasswordExpiration&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/TaskManager_Doesnt_Show_Disk_Statistics</id>
		<title>TaskManager Doesnt Show Disk Statistics</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/TaskManager_Doesnt_Show_Disk_Statistics"/>
				<updated>2021-11-10T17:22:22Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: Created page with &amp;quot;To cause windows task manager to show objects/graphs for disk performance, run from administrator command promt:  diskperf -y Category:Windows&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To cause windows task manager to show objects/graphs for disk performance, run from administrator command promt:&lt;br /&gt;
 diskperf -y&lt;br /&gt;
[[Category:Windows]]&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/Clearing_CBS_Logs</id>
		<title>Clearing CBS Logs</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/Clearing_CBS_Logs"/>
				<updated>2021-06-22T00:48:46Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: Created page with &amp;quot;category:Windows ==Clearing CBS Logs when they are too large==  Stop-Service TrustedInstaller  Remove-Item -Path C:\Windows\Logs\CBS\*.*  Start-Service TrustedInstaller&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[category:Windows]]&lt;br /&gt;
==Clearing CBS Logs when they are too large==&lt;br /&gt;
 Stop-Service TrustedInstaller&lt;br /&gt;
 Remove-Item -Path C:\Windows\Logs\CBS\*.*&lt;br /&gt;
 Start-Service TrustedInstaller&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/Ubuntu_Server_Set_Static_IP_Address</id>
		<title>Ubuntu Server Set Static IP Address</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/Ubuntu_Server_Set_Static_IP_Address"/>
				<updated>2021-06-14T20:17:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: Created page with &amp;quot;Category:Linux In order to change from DHCP to static IP address, edit the contents of /etc/netplan/00-installer-config.yaml   &amp;lt;nowiki&amp;gt; # This is the network config writte...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Linux]]&lt;br /&gt;
In order to change from DHCP to static IP address, edit the contents of /etc/netplan/00-installer-config.yaml&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
# This is the network config written by 'subiquity'&lt;br /&gt;
network:&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens160:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [10.128.20.41/24]&lt;br /&gt;
      gateway4: 10.128.20.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [10.128.20.21, 10.128.20.22]&lt;br /&gt;
  version: 2&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
svae the file, and do:&lt;br /&gt;
&lt;br /&gt;
 netplan apply&lt;br /&gt;
&lt;br /&gt;
or reboot the server.&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/Ubuntu_Renaming_a_Cloned_Virtual_Machine</id>
		<title>Ubuntu Renaming a Cloned Virtual Machine</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/Ubuntu_Renaming_a_Cloned_Virtual_Machine"/>
				<updated>2021-06-13T13:46:45Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Linux]]&lt;br /&gt;
Commands to rename/re-id a cloned ubuntu virtual machine: (replace &amp;quot;newhostname&amp;quot; with the proper new system hostname)&lt;br /&gt;
&lt;br /&gt;
 sudo su -&lt;br /&gt;
 rm /etc/machine-id&lt;br /&gt;
 systemd-machine-id-setup&lt;br /&gt;
 echo newhostname &amp;gt; /etc/hostname&lt;br /&gt;
 reboot&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	<entry>
		<id>https://dfwlpiki.dfwlp.com/index.php/Dell_OMSA_Non-Certified_Drive_Flag</id>
		<title>Dell OMSA Non-Certified Drive Flag</title>
		<link rel="alternate" type="text/html" href="https://dfwlpiki.dfwlp.com/index.php/Dell_OMSA_Non-Certified_Drive_Flag"/>
				<updated>2021-03-28T14:47:50Z</updated>
		
		<summary type="html">&lt;p&gt;Jhorne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Dell Servers]]&lt;br /&gt;
Turn off non-certified disk alert in OpenManage:&lt;br /&gt;
&lt;br /&gt;
Esxi&lt;br /&gt;
 /etc/cim/dell/srvadmin/srvadmin-storage/stsvc.ini&lt;br /&gt;
Windows&lt;br /&gt;
 C:\Program Files\Dell\SysMgt\sm\stsvc.ini&lt;br /&gt;
Linux&lt;br /&gt;
 /opt/dell/srvadmin/etc/srvadmin-storage/stsvc.ini&lt;br /&gt;
&lt;br /&gt;
Loate the below line, it is generally near the top.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
; nonDellCertified flag for blocking all non-dell certified alerts.&lt;br /&gt;
NonDellCertifiedFlag=yes &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change to no.  Restart OpenManage services.  use admin powershell:&lt;br /&gt;
 restart-service dcstor64 -force&lt;/div&gt;</summary>
		<author><name>Jhorne</name></author>	</entry>

	</feed>