-NoClobber set the FileMode (how the operating system should open the file) to CreateNew (= if the file already exists, an IOException will be thrown) if -Append not specified, in which case it will be set by FileMode to be added (= opens the file if it exists and searches for the end of the file, or creates a new file).
So, for all practical purposes -Append -NoClobber = -Append
jon Z source share