小编Sir*_*iss的帖子

PowerShell文件夹权限错误 - 无法转换部分或全部身份引用.

我已经阅读了很多关于此的帖子,但我仍然无法得到它.我正在运行此脚本作为管理员,它确实创建了所需的文件夹,只是没有设置适当的权限.任何帮助,将不胜感激.谢谢!

$Users = Get-Content "D:\New_Users.txt"
ForEach ($user in $users)
{
    $newPath = Join-Path "F:\Users" -childpath $user
    New-Item $newPath -type directory

    $UserObj = New-Object System.Security.Principal.NTAccount("DOMAIN",$user)

    $acl = Get-Acl $newpath
    $acl.SetAccessRuleProtection($True, $False)
    $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("O1OAK\$user","AppendData,CreateDirectories,CreateFiles,DeleteSubdirectoriesAndFiles,ExecuteFile,ListDirectory,Modify,Read,ReadAndExecute,ReadAttributes,ReadData,ReadExtendedAttributes,ReadPermissions,Synchronize,Traverse,Write,WriteAttributes,WriteData,WriteExtendedAttributes","ContainerInherit, ObjectInherit","None","Allow")
    $acl.SetAccessRule($accessRule)
    $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("NT AUTHORITY\SYSTEM","FullControl","ContainerInherit, ObjectInherit","None","Allow")
    $acl.SetAccessRule($accessRule)
    $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("BUILTIN\Administrators","FullControl","ContainerInherit, ObjectInherit","None","Allow")
    $acl.SetAccessRule($accessRule)
    $accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("1OAK\$user","Delete","ContainerInherit, ObjectInherit","None","Allow")
    $acl.removeAccessRule($accessRule)
    $acl.SetOwner($UserObj)
    $acl | Set-Acl $newpath
}
Run Code Online (Sandbox Code Playgroud)

我得到的3个字符串中的第一个错误如下.我认为这是最重要的,并将修复其他2.

Exception calling "SetAccessRule" with "1" argument(s): "Some or all identity references could not be translated."
At D:\DOMAIN\IT\IT Private\User …
Run Code Online (Sandbox Code Playgroud)

windows powershell file-permissions

13
推荐指数
1
解决办法
4万
查看次数

在Storyboard中隐藏一个ViewController的NavigationBar

我找到了很多帖子,但仍然没有解决方案.我试图隐藏一个NavigationBar在初始UIViewController,但我想仍然在第二个显示它UIViewController.这是我的故事板:

在此输入图像描述

当我关闭主视图控制器的推断顶部栏时,它会在故事板中消失,但它仍会在我运行应用程序时显示.当我对NavController中的NavigationBar执行相同操作时,它会消失所有三个(因为它们都继承了无导航栏).

我想在ScrollViewV视图控制器中显示NavBar,但隐藏它MainViewController.

所有控制器都有相应的.h或.m文件,但我对如何以编程方式执行此操作感到困惑.如果您需要查看其他任何内容,请与我们联系.非常感谢!

iphone xcode uinavigationcontroller navbar ios

13
推荐指数
1
解决办法
2万
查看次数

Xcode 5 - -bundle_loader只能与-bundle XCTest一起使用

我正在使用XCTest和Xcode 5进行单元测试.一切都工作得很好,但随后一位同事推动了,它似乎打破了它.

我做了以下事情:

BUNDLE_LOADER = $(BUILT_PRODUCTS_DIR)/ app name.app/app

TEST_HOST = $(BUNDLE_LOADER)

我无休止地玩弄了构建路径.

这是我得到的错误,它与Linker-O错误有关.

-bundle_loader只能与-bundle一起使用

有人知道怎么修这个东西吗?

xcode linker-errors xcode5

9
推荐指数
1
解决办法
1999
查看次数

检查多个函数是否为真,然后执行某些操作

我坚持认为我认为是一个简单的PEBCAK错误.我在提交表单之前试图验证我的所有功能是否属实,但是无法想象我的生活有什么不对.以下是我的javascript代码:

function checknewaccount(){
if(emailvalid()&& checkname() && passwordcheck())
{
    return true;
}
else{
    return false;
}
}


function emailvalid()
{
      if(email condition)
      {
          return true;
      }
      else {
          return false;
      }
}

function checkname())
{
      if(name condition)
      {
          return true;
      }
      else {
          return false;
      }
}

function passwordcheck(){
      if(password condition)
      {
          return true;
      }
      else {
          return false;
      }
}
Run Code Online (Sandbox Code Playgroud)

html如下:

<form  id="newaccount" name="newaccount" method="post"  onSubmit="accountcode.php">
<input type="text" id="email" onBlur="emailvalid()"/>
<input type="text" id="username" onBlur="checkname()" />
<input type="password" id="password"  onkeyup="passwordcheck()"/>
<input …
Run Code Online (Sandbox Code Playgroud)

javascript return function return-value form-submit

7
推荐指数
2
解决办法
3万
查看次数

iPhone - 创建自定义UITableViewCell顶部和底部边框

我一直在寻找,并没有找到我的答案.

我用JSON中的动态单元格填充UITableView,我试图隐藏任何额外的单元格.我在IB中关闭了分离器,当然所有的细胞分离器都消失了.如何在每个tableviewcell的底部和顶部添加一条线,以便只有具有信息的单元格显示边框?我已经导入了Quartz,并且一直在玩CALayer但是找不到解决方案.

我在这里找到了类似的问题,但唯一的答案并不是很有帮助.

这样做会有更好的,不同的方式吗?

这是我的cellForRowAtIndexPath和我的numberOfRowsInSection:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    // Return the number of rows in the section.
    //set equal to the information in the array

    return [_jsonDataArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    //create Dictionary of data in row
    NSDictionary *jsoninfo = [_jsonDataArray objectAtIndex:indexPath.row];

    //get required keys from dictionary and assign to vairables
    NSString *title = [jsoninfo objectForKey:@"title"];
    NSString *subtitle = [jsoninfo objectForKey:@"subtitle"];
    NSURL …
Run Code Online (Sandbox Code Playgroud)

iphone cell uitableview

6
推荐指数
1
解决办法
2万
查看次数

Xcode - Bot产生的输出时间太长,状态15失败

我有一个Bot运行,它工作得很好,直到我更新我的配置文件,并将新的一个复制到XcodeServer/Provisioning Profiles文件夹.现在我收到以下错误:

首先,如问题所述(我的项目中没有任何特殊内容):

机器人问题:错误.构建服务错误.问题:终止xcodebuild,因为它没有产生太长的输出.集成号:1.集成URL:https ://buildserver.example.com/xcode/bots/F3AF171/integrations描述:终止xcodebuild,因为它也没有产生输出长..

其次是:

机器人问题:警告.构建服务错误.问题:创建存档失败:xcodebuild退出,状态为15 ..集成编号:1.集成URL:https ://buildserver.example.com/xcode/bots/F3AF171/integrations说明:创建存档失败:xcodebuild退出,状态为15. .

有关如何修复的任何想法?

xcode continuous-integration bots osx-server ios

6
推荐指数
1
解决办法
1343
查看次数

阻止 SKSpriteNode 减速

我试图让我的 SKSpriteNodes 永远以恒定的速度移动,即使在碰撞之后也是如此。我已将重力设置为 0,摩擦设置为 0,并将线性和角度阻尼设置为零,但精灵仍然缓慢地减慢到零速度。我怎样才能让他们动起来?

根据下面的答案,这就是我尝试过的:编辑下面的代码有效!我只需要检查节点是否比限制慢并加快它们的速度。

[self enumerateChildNodesWithName:kBallName usingBlock:^(SKNode *node, BOOL *stop)
    {
        SKSpriteNode *ball = (SKSpriteNode *)node;
        if (ball.physicsBody.velocity.dx < 0) {
            if (ball.physicsBody.velocity.dx > -50)
                ball.physicsBody.velocity = CGVectorMake(-50, ball.physicsBody.velocity.dy);
        }
        if (ball.physicsBody.velocity.dx > 0) {
            if (ball.physicsBody.velocity.dx < 50)
               ball.physicsBody.velocity = CGVectorMake(50, ball.physicsBody.velocity.dy);
        }
        if (ball.physicsBody.velocity.dy < 0) {
            if (ball.physicsBody.velocity.dy > -50)
                ball.physicsBody.velocity = CGVectorMake(ball.physicsBody.velocity.dx, -50);
        }
        if (ball.physicsBody.velocity.dy > 0) {
            if (ball.physicsBody.velocity.dy > 50)
                ball.physicsBody.velocity = CGVectorMake(ball.physicsBody.velocity.dx, 50);
        }
    }];
Run Code Online (Sandbox Code Playgroud)

ios sprite-kit skphysicsbody skspritenode skphysicsworld

6
推荐指数
1
解决办法
1107
查看次数

使用NavigationBar禁用UIScrollView垂直滚动

所以我看到了很多其他的帖子,我想我几乎都试过了.我不希望这是一个重复,但我无法解决我的问题.我有这样的设置: 在此输入图像描述

当我到达我的滚动视图控制器时,我可以翻页很好,但我也可以垂直移动图片.我认为它与NavigationBar有关,迫使ScrollView框架向下,但仍然将框架设置为全屏尺寸.如何防止滚动视图视图控制器上的任何垂直滚动?我的.m如下:

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.navigationController.navigationBarHidden = NO;

i = 0;

_PhotoBundle = [[NSBundle mainBundle] pathsForResourcesOfType:@".jpg"inDirectory:@"Dog_Images"];

_PhotoArray = [[NSMutableArray alloc] initWithCapacity:_PhotoBundle.count];
for (NSString* path in _PhotoBundle)
{
    [_PhotoArray addObject:[UIImage imageWithContentsOfFile:path]];
}
for (int x = 0; x < _PhotoArray.count; x++)
{
    CGRect frame;
    frame.origin.x = self.mainScroll.frame.size.width * x;
    frame.origin.y = 0;
    frame.size = self.mainScroll.frame.size;

    UIImage *nextImg = [[UIImage alloc] init];
    nextImg = [_PhotoArray objectAtIndex:x];

    UIImageView *nextIV = [[UIImageView alloc] …
Run Code Online (Sandbox Code Playgroud)

iphone xcode scroll uiscrollview ios

2
推荐指数
1
解决办法
2114
查看次数

将PHP数组返回到Javascript数组

我试图将我的SQL查询数组返回到一个javascript数组,然后一次显示一个信息.我已经在这里发现了一些有用的帖子,但我仍然无法让它工作.我是ajax的新手,所以请原谅任何愚蠢的错误.下面是php后面的描述.php:这是来自index.php的外部文件

<?php
include('connection.php');

$query = "SELECT * FROM photos";
$queryresult = mysql_query($query);

while ( $line = mysql_fetch_array($result) ) {
    $path[] = $row[0];
}
$paths = json_encode($path);
header('Content-type: application/json');
echo $paths;
?>
Run Code Online (Sandbox Code Playgroud)

这将获得结果(它们是文件路径)数组,json将它们编码为传递给javascript.Connection.php是正确的,它正在工作.

HTML/JavaScript的:

<html>
<head>
<script src="JavaScript/gjs.js" type="text/javascript"></script>
<script src="jquery/jquery-1.4.3.min.js" type="text/javascript"></script>
<script>
function imageload(){
var i = 1;
$.getJSON('phpfiles/getpiccode.php', function(data) {

    var can = document.getElementById('canvas').getContext('2d');

    $.each(data,function(idx, row){
    var img = new Image();
    img.onload = function(){
        can.drawImage(img, 0, 0, 1280, 800);
    }
    img.src = row;
            i++;
});

});

}
</script>
</head> …
Run Code Online (Sandbox Code Playgroud)

javascript php arrays ajax canvas

0
推荐指数
1
解决办法
915
查看次数

裁剪 AVCapturePhoto 以覆盖屏幕上显示的矩形

我正在尝试拍摄一块薄金属的照片,并将其裁剪为屏幕上显示的轮廓。我几乎看过这里的所有其他帖子,但还没有任何东西适合我。然后该图像将被图书馆用于分析。我可以进行一些裁剪,但不能对显示的矩形进行裁剪。我尝试在裁剪之前旋转图像,并根据屏幕上的矩形计算矩形。

视频层

这是我的捕获代码。PreviewView是容器,videoLayer是AVCapture视频的容器。

    // Photo capture delegate
    func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) {
        guard let imgData = photo.fileDataRepresentation(), let uiImg = UIImage(data: imgData), let cgImg = uiImg.cgImage else {
            return
        }
        print("Original image size: ", uiImg.size, "\nCGHeight: ", cgImg.height, " width: ", cgImg.width)
        print("Orientation: ", uiImg.imageOrientation.rawValue)
        
        guard let img = cropImage(image: uiImg) else {
            return
        }
        
        showImage(image: img)
    }

    
    func cropImage(image: UIImage) -> UIImage? {
        print("Image size before crop: ", image.size)
        //Get the croppedRect from function below …
Run Code Online (Sandbox Code Playgroud)

camera ios avcapturesession swift avcapturephotooutput

0
推荐指数
1
解决办法
1314
查看次数