<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mass change on user profiles</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 18:11:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: hmssl2k</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97213</link>
		<dc:creator>hmssl2k</dc:creator>
		<pubDate>Thu, 29 Sep 2011 18:29:27 +0000</pubDate>
		<guid isPermaLink="false">#comment-97213</guid>
		<description><![CDATA[1. DSPUSRPRF *ALL OUTPUT(*OUTFILE) OUTFILE(lib/file)
2. Run SQL or QRY to create a new file with just the user profiles you want to change.
3. DCLF lib/file
4. DCL variables for the changes you want to make and set their Initial value.
5. loop through you file to you come to EOF.]]></description>
		<content:encoded><![CDATA[<p>1. DSPUSRPRF *ALL OUTPUT(*OUTFILE) OUTFILE(lib/file)<br />
2. Run SQL or QRY to create a new file with just the user profiles you want to change.<br />
3. DCLF lib/file<br />
4. DCL variables for the changes you want to make and set their Initial value.<br />
5. loop through you file to you come to EOF.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hmssl2k</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97212</link>
		<dc:creator>hmssl2k</dc:creator>
		<pubDate>Thu, 29 Sep 2011 18:21:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-97212</guid>
		<description><![CDATA[In your outfile, run a QRY over it to leave out IBM, and other profiles you don&#039;t wish to change.]]></description>
		<content:encoded><![CDATA[<p>In your outfile, run a QRY over it to leave out IBM, and other profiles you don&#8217;t wish to change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97169</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:45:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-97169</guid>
		<description><![CDATA[You might use Management Central in iSeries Navigator.

Right-click the Endpoint. Select Users and groups-&gt; Edit users... Click the Browse button and select all user profiles you want to change. Pick the Category, then select the Setting you want to change. Click the Properties button to enter the setting value. (The Properties button is in the right-hand margin in my window.)

After you have all Settings/Properties set, click the OK button.

Tom]]></description>
		<content:encoded><![CDATA[<p>You might use Management Central in iSeries Navigator.</p>
<p>Right-click the Endpoint. Select Users and groups-&gt; Edit users&#8230; Click the Browse button and select all user profiles you want to change. Pick the Category, then select the Setting you want to change. Click the Properties button to enter the setting value. (The Properties button is in the right-hand margin in my window.)</p>
<p>After you have all Settings/Properties set, click the OK button.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97167</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:23:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-97167</guid>
		<description><![CDATA[command should be ....

CHGUSRPRF &amp;UPUPRF  ... with keywords and values to change it to

&amp;UPUPRF is the field from the file you created of user profiles.

Phil]]></description>
		<content:encoded><![CDATA[<p>command should be &#8230;.</p>
<p>CHGUSRPRF &amp;UPUPRF  &#8230; with keywords and values to change it to</p>
<p>&amp;UPUPRF is the field from the file you created of user profiles.</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philpl1jb</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97165</link>
		<dc:creator>philpl1jb</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:16:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-97165</guid>
		<description><![CDATA[Issues - &lt;ul&gt;&lt;b&gt;DANGER&lt;/b&gt;&lt;/ul&gt; you will change every profile that is in the file if you have authority to change them INCLUDING QSYSOPR, and other critical profiles. 

Authority issues apply.


Here is a rough draft of the cl program 

DCLF myfile

loop: rcvf
monmsg cpf0864  EXEC (GOTO CMDLBL(END))   

CHGUSRPRF PWDEXP(*yes) &lt;-- here is where you specify the change(s)
go to loop
END: ENDPGM]]></description>
		<content:encoded><![CDATA[<p>Issues &#8211;
<ul><b>DANGER</b></ul>
<p> you will change every profile that is in the file if you have authority to change them INCLUDING QSYSOPR, and other critical profiles. </p>
<p>Authority issues apply.</p>
<p>Here is a rough draft of the cl program </p>
<p>DCLF myfile</p>
<p>loop: rcvf<br />
monmsg cpf0864  EXEC (GOTO CMDLBL(END))   </p>
<p>CHGUSRPRF PWDEXP(*yes) &lt;&#8211; here is where you specify the change(s)<br />
go to loop<br />
END: ENDPGM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pat419</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/mass-change-on-user-profiles/#comment-97154</link>
		<dc:creator>pat419</dc:creator>
		<pubDate>Wed, 28 Sep 2011 17:26:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-97154</guid>
		<description><![CDATA[Do you have an example of how to write a function which runs a CHGUSRPRF cmd to read the records in the outfile]]></description>
		<content:encoded><![CDATA[<p>Do you have an example of how to write a function which runs a CHGUSRPRF cmd to read the records in the outfile</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.048 seconds using memcached
Object Caching 338/341 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 18:24:10 -->