# File lib/specinfra/command/windows/base/iis_website.rb, line 31
    def check_has_physical_path(name, path)
      Backend::PowerShell::Command.new do
        using 'find_iis_component.ps1'
        exec "[System.Environment]::ExpandEnvironmentVariables( ( FindIISWebsite -name '#{name}' ).physicalPath ).replace('\\', '/' ) -eq ('#{path}'.trimEnd('/').replace('\\', '/'))"
      end
    end