Create share folder from endpoint

You can use below script to share any interested folder path in the network,

Note: User’s download folder has been chosen to be shared.

import os;
share=os.popen('net share internalshare=C:\Users\Max\Downloads /remark:"For Internal operations"').read()
print(share);

Sample output would be,