我正在创建具有受限运行空间的PowerShell主机。我想提供对Get-ChildItem等命令的访问权限,但仅限于某个文件夹及其所有子文件夹。有没有办法对运行空间应用这样的限制,还是只能重新设置langiage功能和可用命令?
答案 0 :(得分:0)
我同意beatcracker,为BigDecimal value = new BigDecimal(0.021); //input your value here
int scale = value.scale();
int precision = value.precision();
int result = value.movePointLeft(precision-scale-1).abs().intValue(); //this will generate the result you need
创建代理功能。实际上,您不需要在运行空间中使Get-ChildItem
可用;如果隐藏cmdlet或限制其使用,您仍然可以在自己的函数中使用它,然后允许运行您的函数。