# File lib/chef/win32/file.rb, line 148
      def self.verify_links_supported!
        begin
          CreateSymbolicLinkW(nil)
        rescue Chef::Exceptions::Win32APIFunctionNotImplemented => e
          raise e
        rescue Exception
          # things are ok.
        end
      end