OK I was correct here is what I am going to go with (i think)

 Code:
; Sets the username to the logged on user
		$username = @USERID		
		; Calls the Translate function on the userID to get the FQDN
		$userhome = TranslateName (3, "", 3, "@LDomain\$username", 1)
		;Binds to the Users Active Directory Object
		$userinfo = GetObject("LDAP://" + $userhome[0])


		If Not $userinfo.profilepath = ""
		
			;deletes the profile path in Active Directory
			$userinfo.putEX(1, "profilePath", "")
			;Executes the Query
			$userinfo.SetInfo
			
		EndIf