{%
    if PathExist then
        if NameExist then
            echo("Set logical drive name successfully.\n")
        end
    
        if RpValueExist then
            echo("Set logical drive read policy successfully.\n");
        end
    
        if WpValueExist then
            echo("Set logical drive write policy successfully.\n")
        end
    
        if IopValueExist then
            echo("Set logical drive IO policy successfully.\n")
        end
    
        if ApValueExist then
            echo("Set logical drive access policy successfully.\n")
        end
    
        if DcpValueExist then
            echo("Set logical drive disk cache policy successfully.\n")
        end
    
        if BgiExist then
            echo("Set logical drive BGI state successfully\n")
        end
        
        if BootExist then
            echo("Set logical drive as boot device successfully.\n")
        end
    
        if SscdExist then
            echo("Set logical drive SSCD caching state successfully.\n")
        end

        if LdsizeExist then
            echo("Set logical drive capacity successfully.\n")
        end

        if StripesizeExist then
            echo("Set logical drive strip size successfully.\n")
        end

        if AcceleratorExist then
            echo("Set logical drive acceleration method successfully.\n")
        end
    else
        echo("Volume not exist.\n")
    end
%}