How to enable file sharing for my app?

You just have to set UIFileSharingEnabled (Application Supports iTunes file sharing) key in the info plist of your app. Here’s a link for the documentation. Scroll down to the file sharing support part. In the past, it was also necessary to define CFBundleDisplayName (Bundle Display Name), if it wasn’t already there. More details here.

What security risks are there with employees using Dropbox?

It depends on your business and your level of paranoia. It’s much safer, albeit more expensive, to issue laptops with a VPN connection. Real quick… Some Risks: Former employees potentially have access to business data after employment has been terminated. You as the business MUST be in control of the accounts if you don’t want … Read more

How can I get a list of shared directories on local Windows server?

You can go into computer management (right click my computer, select manage), expand the Shared Folders node and see a list of all shares, connected sessions and open files. For W2K8, you do this in Server Manager instead: Roles -> File Services -> Share and Storage Management; the Shares tab in the center of the … Read more

How to configure a Windows machine to allow file sharing with a DNS alias

To facilitate failover schemes, a common technique is to use DNS CNAME records (DNS Aliases) for different machine roles. Then instead of changing the Windows computername of the actual machine name, one can switch a DNS record to point to a new host. This can work on Microsoft Windows machines, but to make it work … Read more